[Lldb-commits] [lldb] r114210 - /lldb/trunk/test/foundation/TestObjCMethods.py

Johnny Chen johnny.chen at apple.com
Fri Sep 17 14:14:02 PDT 2010


Author: johnny
Date: Fri Sep 17 16:14:02 2010
New Revision: 114210

URL: http://llvm.org/viewvc/llvm-project?rev=114210&view=rev
Log:
Changed test case method names.

Modified:
    lldb/trunk/test/foundation/TestObjCMethods.py

Modified: lldb/trunk/test/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestObjCMethods.py?rev=114210&r1=114209&r2=114210&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Fri Sep 17 16:14:02 2010
@@ -1,4 +1,4 @@
-"""Set breakpoint on objective-c class and instance methods in foundation."""
+"""Set breakpoints on objective-c class and instance methods in foundation."""
 
 import os, time
 import unittest2
@@ -10,12 +10,12 @@
 
     mydir = "foundation"
 
-    def test_with_dsym(self):
+    def test_break_with_dsym(self):
         """Test setting objc breakpoints using 'regexp-break' and 'breakpoint set'."""
         self.buildDsym()
         self.break_on_objc_methods()
 
-    def test_with_dwarf(self):
+    def test_break_with_dwarf(self):
         """Test setting objc breakpoints using 'regexp-break' and 'breakpoint set'."""
         self.buildDwarf()
         self.break_on_objc_methods()





More information about the lldb-commits mailing list