xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/no_threadState.test (revision 1373f7c714824f5957aa5fabf8370286f86e6b14)
1# RUN: %clang_host -g %S/Inputs/test.c -o %t.out
2
3# RUN: cp %S/Inputs/no_threadState.ips %t.crash
4# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' --json
5# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.crash' 2>&1 | FileCheck %s
6
7# CHECK: "crashlog" {{.*}} commands have been installed, use the "--help" options on these commands
8
9# CHECK: Thread[0] Crashing Thread Name EXC_BAD_ACCESS (SIGSEGV) (KERN_INVALID_ADDRESS at 0x0000000000000000)
10# CHECK: [  0] {{.*}}out`foo + 16 at test.c
11# CHECK: [  1] {{.*}}out`bar + 8 at test.c
12# CHECK: [  2] {{.*}}out`main + 19 at test.c
13# CHECK: No thread state (register information) available
14