[Lldb-commits] [lldb] r146956 - /lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
Johnny Chen
johnny.chen at apple.com
Mon Dec 19 18:11:37 PST 2011
Author: johnny
Date: Mon Dec 19 20:11:37 2011
New Revision: 146956
URL: http://llvm.org/viewvc/llvm-project?rev=146956&view=rev
Log:
Properly name the test class as well as the test methods.
Modified:
lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
Modified: lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py?rev=146956&r1=146955&r2=146956&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py (original)
+++ lldb/trunk/test/lang/objc/objc-checker/TestObjCCheckers.py Mon Dec 19 20:11:37 2011
@@ -8,19 +8,19 @@
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()
More information about the lldb-commits
mailing list