[Lldb-commits] [lldb] r121494 - /lldb/trunk/test/objc-stepping/TestObjCStepping.py

Johnny Chen johnny.chen at apple.com
Fri Dec 10 09:15:34 PST 2010


Author: johnny
Date: Fri Dec 10 11:15:34 2010
New Revision: 121494

URL: http://llvm.org/viewvc/llvm-project?rev=121494&view=rev
Log:
Fix some typo in method names and docstrings.

Modified:
    lldb/trunk/test/objc-stepping/TestObjCStepping.py

Modified: lldb/trunk/test/objc-stepping/TestObjCStepping.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/objc-stepping/TestObjCStepping.py?rev=121494&r1=121493&r2=121494&view=diff
==============================================================================
--- lldb/trunk/test/objc-stepping/TestObjCStepping.py (original)
+++ lldb/trunk/test/objc-stepping/TestObjCStepping.py Fri Dec 10 11:15:34 2010
@@ -10,15 +10,14 @@
     mydir = "objc-stepping"
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    def test_with_dsym_and_run_command(self):
-        """Test 'frame variable var_name' on some variables with array types."""
+    def test_with_dsym_and_python_api(self):
+        """Test stepping through ObjC method dispatch in various forms."""
         self.buildDsym()
         self.objc_stepping()
 
-    @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    def test_with_dsym_and_python_api(self):
-        """Use Python APIs to inspect variables with array types."""
-        self.buildDsym()
+    def test_with_dward_and_python_api(self):
+        """Test stepping through ObjC method dispatch in various forms."""
+        self.buildDwarf()
         self.objc_stepping()
 
     def setUp(self):





More information about the lldb-commits mailing list