diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-03-23 00:43:28 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-03-23 00:43:28 +0000 |
commit | 468d6c46807156e674a6810b5c498913c49487e0 (patch) | |
tree | 71064e1a485a598b9949142dd7272a654a666c9f | |
parent | de8241c255b80ad5e7f13f84d3ea17daff1af69b (diff) | |
download | bcm5719-llvm-468d6c46807156e674a6810b5c498913c49487e0.tar.gz bcm5719-llvm-468d6c46807156e674a6810b5c498913c49487e0.zip |
Fix test suite failures by modifying the script for testing abbreviations.
Failures were due to new commands introduced.
llvm-svn: 128125
-rw-r--r-- | lldb/test/abbreviation_tests/TestAbbreviations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/abbreviation_tests/TestAbbreviations.py b/lldb/test/abbreviation_tests/TestAbbreviations.py index ed2cf5718f4..b35536af3ad 100644 --- a/lldb/test/abbreviation_tests/TestAbbreviations.py +++ b/lldb/test/abbreviation_tests/TestAbbreviations.py @@ -74,7 +74,7 @@ class AbbreviationsTestCase(TestBase): 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 @@ class AbbreviationsTestCase(TestBase): "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', |