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