[Lldb-commits] [lldb] r132438 - /lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py

Johnny Chen johnny.chen at apple.com
Wed Jun 1 16:35:20 PDT 2011


Author: johnny
Date: Wed Jun  1 18:35:20 2011
New Revision: 132438

URL: http://llvm.org/viewvc/llvm-project?rev=132438&view=rev
Log:
Exercise the 'thread backtrace all' command instead of the currently 'thread backtrace' command.
This serves as a regression test against rdar://problem/9530511.

Modified:
    lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py

Modified: lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py?rev=132438&r1=132437&r2=132438&view=diff
==============================================================================
--- lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/inferior-crashing/TestInferiorCrashing.py Wed Jun  1 18:35:20 2011
@@ -45,7 +45,7 @@
                        'stop reason = EXC_BAD_ACCESS'])
 
         # And it should report the correct line number.
-        self.expect("thread backtrace",
+        self.expect("thread backtrace all",
             substrs = ['stop reason = EXC_BAD_ACCESS',
                        'main.c:%d' % self.line])
 





More information about the lldb-commits mailing list