[Lldb-commits] [lldb] r115512 - /lldb/trunk/test/dead-strip/TestDeadStrip.py
Johnny Chen
johnny.chen at apple.com
Mon Oct 4 09:23:16 PDT 2010
Author: johnny
Date: Mon Oct 4 11:23:16 2010
New Revision: 115512
URL: http://llvm.org/viewvc/llvm-project?rev=115512&view=rev
Log:
The 'thread list' command no longer displays the file:lineno after the recent check-in.
Remove file:lineno from the expected substrings.
Modified:
lldb/trunk/test/dead-strip/TestDeadStrip.py
Modified: lldb/trunk/test/dead-strip/TestDeadStrip.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dead-strip/TestDeadStrip.py?rev=115512&r1=115511&r2=115512&view=diff
==============================================================================
--- lldb/trunk/test/dead-strip/TestDeadStrip.py (original)
+++ lldb/trunk/test/dead-strip/TestDeadStrip.py Mon Oct 4 11:23:16 2010
@@ -44,7 +44,6 @@
# The stop reason of the thread should be breakpoint (breakpoint #1).
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
substrs = ['state is Stopped',
- 'main.c:20',
'a.out`f1',
'stop reason = breakpoint'])
@@ -57,7 +56,6 @@
# The stop reason of the thread should be breakpoint (breakpoint #3).
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
substrs = ['state is Stopped',
- 'main.c:40',
'a.out`f3',
'stop reason = breakpoint'])
More information about the lldb-commits
mailing list