summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-12-20 02:11:37 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-12-20 02:11:37 +0000
commit2c684f00a31cc9761f3368fd2a1808963096eb5f (patch)
treeb677d30cc902c734f33bdd9478201da5a29042f4
parent764d2fe6668d66d82dcd412463432d0f87420455 (diff)
downloadbcm5719-llvm-2c684f00a31cc9761f3368fd2a1808963096eb5f.tar.gz
bcm5719-llvm-2c684f00a31cc9761f3368fd2a1808963096eb5f.zip
Properly name the test class as well as the test methods.
llvm-svn: 146956
-rw-r--r--lldb/test/lang/objc/objc-checker/TestObjCCheckers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/lang/objc/objc-checker/TestObjCCheckers.py b/lldb/test/lang/objc/objc-checker/TestObjCCheckers.py
index 04ae9e26d1c..2b09c36f99b 100644
--- a/lldb/test/lang/objc/objc-checker/TestObjCCheckers.py
+++ b/lldb/test/lang/objc/objc-checker/TestObjCCheckers.py
@@ -8,19 +8,19 @@ import unittest2
import lldb, lldbutil
from lldbtest import *
-class ObjCDynamicValueTestCase(TestBase):
+class ObjCCheckerTestCase(TestBase):
mydir = os.path.join("lang", "objc", "objc-checker")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@python_api_test
- def test_get_dynamic_objc_vals_with_dsym(self):
+ def test_objc_checker_with_dsym(self):
"""Test that checkers catch unrecognized selectors"""
self.buildDsym()
self.do_test_checkers()
@python_api_test
- def test_get_objc_dynamic_vals_with_dwarf(self):
+ def test_objc_checker_with_dwarf(self):
"""Test that checkers catch unrecognized selectors"""
self.buildDwarf()
self.do_test_checkers()
OpenPOWER on IntegriCloud