[Lldb-commits] [lldb] r146957 - /lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
Johnny Chen
johnny.chen at apple.com
Mon Dec 19 18:14:02 PST 2011
Author: johnny
Date: Mon Dec 19 20:14:01 2011
New Revision: 146957
URL: http://llvm.org/viewvc/llvm-project?rev=146957&view=rev
Log:
Properly name the test class as well as the test methods.
Modified:
lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
Modified: lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py?rev=146957&r1=146956&r2=146957&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py (original)
+++ lldb/trunk/test/lang/objc/objc-property/TestObjCProperty.py Mon Dec 19 20:14:01 2011
@@ -8,19 +8,19 @@
import lldb, lldbutil
from lldbtest import *
-class ObjCDynamicValueTestCase(TestBase):
+class ObjCPropertyTestCase(TestBase):
mydir = os.path.join("lang", "objc", "objc-property")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@python_api_test
- def test_get_dynamic_objc_vals_with_dsym(self):
+ def test_objc_properties_with_dsym(self):
"""Test that expr uses the correct property getters and setters"""
self.buildDsym()
self.do_test_properties()
@python_api_test
- def test_get_objc_dynamic_vals_with_dwarf(self):
+ def test_objc_properties_with_dwarf(self):
"""Test that expr uses the correct property getters and setters"""
self.buildDwarf()
self.do_test_properties()
More information about the lldb-commits
mailing list