1c7cbf32fSJonas Devlieghere# RUN: %clang_host -g %S/Inputs/test.c -o %t.out 2c7cbf32fSJonas Devlieghere# RUN: cp %S/Inputs/a.out.crash %t.crash 3d329dfd0SJonas Devlieghere# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' 4*1373f7c7SMed Ismail Bennani# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.crash' 2>&1 | FileCheck %s 5c7cbf32fSJonas Devlieghere 6f8d889a7SDave Lee# CHECK: "crashlog" {{.*}} commands have been installed, use the "--help" options on these commands 7f8d889a7SDave Lee 8c7cbf32fSJonas Devlieghere# CHECK: Thread[0] EXC_BAD_ACCESS (SIGSEGV) (KERN_INVALID_ADDRESS at 0x0000000000000000) 9c7cbf32fSJonas Devlieghere# CHECK: [ 0] {{.*}}out`foo + 16 at test.c 10c7cbf32fSJonas Devlieghere# CHECK: [ 1] {{.*}}out`bar + 8 at test.c 11c7cbf32fSJonas Devlieghere# CHECK: [ 2] {{.*}}out`main + 19 at test.c 1281cbc294SMed Ismail Bennani# CHECK: [ 3] 0x{{[0]+}}1000000 start + 1 1391d3f739SJonas Devlieghere# CHECK: rbp = 0x00007ffee42d8020 14