[Lldb-commits] [lldb] r117101 - /lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py

Johnny Chen johnny.chen at apple.com
Fri Oct 22 09:17:39 PDT 2010


Author: johnny
Date: Fri Oct 22 11:17:39 2010
New Revision: 117101

URL: http://llvm.org/viewvc/llvm-project?rev=117101&view=rev
Log:
Fix misnamed test method names.

Modified:
    lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py

Modified: lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py?rev=117101&r1=117100&r2=117101&view=diff
==============================================================================
--- lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py (original)
+++ lldb/trunk/test/breakpoint_conditions/TestBreakpointConditions.py Fri Oct 22 11:17:39 2010
@@ -13,12 +13,12 @@
     mydir = "breakpoint_conditions"
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    def test_with_dsym_python(self):
+    def test_with_dsym_and_run_command(self):
         """Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
         self.buildDsym()
         self.breakpoint_conditions()
 
-    def test_with_dwarf_python(self):
+    def test_with_dwarf_and_run_command(self):
         """Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
         self.buildDwarf()
         self.breakpoint_conditions()





More information about the lldb-commits mailing list