[Lldb-commits] [lldb] r128505 - /lldb/trunk/test/abbreviation_tests/TestAbbreviations.py
Jim Ingham
jingham at apple.com
Tue Mar 29 16:22:29 PDT 2011
Author: jingham
Date: Tue Mar 29 18:22:29 2011
New Revision: 128505
URL: http://llvm.org/viewvc/llvm-project?rev=128505&view=rev
Log:
Can't count on the particular number of modules loaded into a basic C executable.
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=128505&r1=128504&r2=128505&view=diff
==============================================================================
--- lldb/trunk/test/abbreviation_tests/TestAbbreviations.py (original)
+++ lldb/trunk/test/abbreviation_tests/TestAbbreviations.py Tue Mar 29 18:22:29 2011
@@ -131,13 +131,13 @@
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',
More information about the lldb-commits
mailing list