1# RUN: %clang_host -g %S/Inputs/test.c -o %t.out 2# RUN: cp %S/Inputs/a.out.ips %t.crash 3# RUN: python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' --json 4# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.crash' 2>&1 | FileCheck %s 5 6# CHECK: Thread[0] EXC_BAD_ACCESS (SIGSEGV) (KERN_INVALID_ADDRESS at 0x00000000) 7# CHECK: [ 0] {{.*}}out`foo + 16 at test.c 8# CHECK: [ 1] {{.*}}out`bar + 8 at test.c 9# CHECK: [ 2] {{.*}}out`main + 19 at test.c 10