diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-06-01 23:35:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-06-01 23:35:20 +0000 |
commit | 1dba2230b5a7681e5459422586976e628dce6b74 (patch) | |
tree | aac9f2c27e55bbc33823eb28d04f85b43a4a0738 | |
parent | 6ded76be9c862a14ae4d677ee74078a4643a5336 (diff) | |
download | bcm5719-llvm-1dba2230b5a7681e5459422586976e628dce6b74.tar.gz bcm5719-llvm-1dba2230b5a7681e5459422586976e628dce6b74.zip |
Exercise the 'thread backtrace all' command instead of the currently 'thread backtrace' command.
This serves as a regression test against rdar://problem/9530511.
llvm-svn: 132438
-rw-r--r-- | lldb/test/inferior-crashing/TestInferiorCrashing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/inferior-crashing/TestInferiorCrashing.py b/lldb/test/inferior-crashing/TestInferiorCrashing.py index bd61c2246c3..5c3188c07e7 100644 --- a/lldb/test/inferior-crashing/TestInferiorCrashing.py +++ b/lldb/test/inferior-crashing/TestInferiorCrashing.py @@ -45,7 +45,7 @@ class CrashingInferiorTestCase(TestBase): '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]) |