[Lldb-commits] [lldb] r124707 - /lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
Johnny Chen
johnny.chen at apple.com
Tue Feb 1 16:56:40 PST 2011
Author: johnny
Date: Tue Feb 1 18:56:40 2011
New Revision: 124707
URL: http://llvm.org/viewvc/llvm-project?rev=124707&view=rev
Log:
Fix test function breakpoint_command_script_parameters()'s expect-pattern so that
it passes when using clang as the compiler to build the inferior.
Modified:
lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
Modified: lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py?rev=124707&r1=124706&r2=124707&view=diff
==============================================================================
--- lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py (original)
+++ lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py Tue Feb 1 18:56:40 2011
@@ -163,7 +163,7 @@
self.expect (output, "File 'output-2.txt' and the content matches", exe=False,
startstr = "frame #0:",
- patterns = ["1.* where = .*main .* 11.* resolved, hit count = 1" ])
+ patterns = ["1.* where = .*main .* resolved, hit count = 1" ])
# Now remove 'output-2.txt'
os.remove ('output-2.txt')
More information about the lldb-commits
mailing list