diff options
author | Jim Ingham <jingham@apple.com> | 2011-03-29 23:22:29 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-03-29 23:22:29 +0000 |
commit | dedfac0b9508b4fbb70a0749a081de1e52b6bbf6 (patch) | |
tree | 15de2b4de3d326fdfb8497f473e813b1ef94e849 | |
parent | 1900c73a9764eb82fd68616da66f2f0f8a4953e5 (diff) | |
download | bcm5719-llvm-dedfac0b9508b4fbb70a0749a081de1e52b6bbf6.tar.gz bcm5719-llvm-dedfac0b9508b4fbb70a0749a081de1e52b6bbf6.zip |
Can't count on the particular number of modules loaded into a basic C executable.
llvm-svn: 128505
-rw-r--r-- | lldb/test/abbreviation_tests/TestAbbreviations.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/abbreviation_tests/TestAbbreviations.py b/lldb/test/abbreviation_tests/TestAbbreviations.py index b35536af3ad..9cbdae6ebe5 100644 --- a/lldb/test/abbreviation_tests/TestAbbreviations.py +++ b/lldb/test/abbreviation_tests/TestAbbreviations.py @@ -131,13 +131,13 @@ class AbbreviationsTestCase(TestBase): patterns = ["Line table for .*main.cpp in `a.out"]) self.expect("i d se", - startstr = "Dumping sections for 5 modules.") + patterns = ["Dumping sections for [0-9]+ modules."]) self.expect("i d symf", - startstr = "Dumping debug symbols for 5 modules.") + patterns = ["Dumping debug symbols for [0-9]+ modules."]) self.expect("i d symt", - startstr = "Dumping symbol table for 5 modules.") + patterns = ["Dumping symbol table for [0-9]+ modules."]) self.expect("i li", substrs = [ 'a.out', |