xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/json.test (revision 1373f7c714824f5957aa5fabf8370286f86e6b14)
1c7cbf32fSJonas Devlieghere# RUN: %clang_host -g %S/Inputs/test.c -o %t.out
2730fca46SJonas Devlieghere
3c7cbf32fSJonas Devlieghere# RUN: cp %S/Inputs/a.out.ips %t.crash
4d329dfd0SJonas Devlieghere# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' --json
5*1373f7c7SMed Ismail Bennani# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.crash' 2>&1 | FileCheck %s
6*1373f7c7SMed Ismail Bennani# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog -c %t.crash' 2>&1 | FileCheck %s
7c7cbf32fSJonas Devlieghere
8730fca46SJonas Devlieghere# RUN: cp %S/Inputs/a.out.ips %t.nometadata.crash
9d329dfd0SJonas Devlieghere# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.nometadata.crash --offsets '{"main":20, "bar":9, "foo":16}' --json --no-metadata
10*1373f7c7SMed Ismail Bennani# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.nometadata.crash' 2>&1 | FileCheck %s
11730fca46SJonas Devlieghere
12f8d889a7SDave Lee# CHECK: "crashlog" {{.*}} commands have been installed, use the "--help" options on these commands
13f8d889a7SDave Lee
14a62cbd9aSJonas Devlieghere# CHECK: Thread[0] Crashing Thread Name EXC_BAD_ACCESS (SIGSEGV) (KERN_INVALID_ADDRESS at 0x0000000000000000)
15c7cbf32fSJonas Devlieghere# CHECK: [  0] {{.*}}out`foo + 16 at test.c
16c7cbf32fSJonas Devlieghere# CHECK: [  1] {{.*}}out`bar + 8 at test.c
17c7cbf32fSJonas Devlieghere# CHECK: [  2] {{.*}}out`main + 19 at test.c
1891d3f739SJonas Devlieghere# CHECK: rbp = 0x00007ffeec22a530
19e1cad130SJonas Devlieghere# CHECK: tmp2 = 0x0000000000000008
20b225c5f7SJonas Devlieghere# CHECK: invalid foo
21b225c5f7SJonas Devlieghere# CHECK: invalid bar
22