[Lldb-commits] [lldb] r128125 - /lldb/trunk/test/abbreviation_tests/TestAbbreviations.py

Johnny Chen johnny.chen at apple.com
Tue Mar 22 17:43:29 PDT 2011


Author: johnny
Date: Tue Mar 22 19:43:28 2011
New Revision: 128125

URL: http://llvm.org/viewvc/llvm-project?rev=128125&view=rev
Log:
Fix test suite failures by modifying the script for testing abbreviations.
Failures were due to new commands introduced.

Modified:
    lldb/trunk/test/abbreviation_tests/TestAbbreviations.py

Modified: lldb/trunk/test/abbreviation_tests/TestAbbreviations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/abbreviation_tests/TestAbbreviations.py?rev=128125&r1=128124&r2=128125&view=diff
==============================================================================
--- lldb/trunk/test/abbreviation_tests/TestAbbreviations.py (original)
+++ lldb/trunk/test/abbreviation_tests/TestAbbreviations.py Tue Mar 22 19:43:28 2011
@@ -74,7 +74,7 @@
         self.expect("fil " + exe,
                     patterns = [ "Current executable set to .*a.out.*" ])
 
-        self.expect("regex product",
+        self.expect("regexp-b product",
                     substrs = [ "breakpoint set --name 'product'",
                                 "Breakpoint created: 1: name = 'product', locations = 1" ])
 
@@ -119,7 +119,7 @@
                                  "at main.cpp\:25", 
                                  "stop reason = breakpoint 2.1" ])
 
-        self.expect("d -f",
+        self.expect("dis -f",
                     startstr = "a.out`sum(int, int):",
                     substrs = [' push',
                                ' mov',





More information about the lldb-commits mailing list