You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
511 B
15 lines
511 B
RUN: echo "%p/Inputs/dsym-test-exe 0x0000000100000f90" > %t.input
|
|
RUN: echo "%p/Inputs/dsym-test-exe-second 0x0000000100000f90" >> %t.input
|
|
RUN: llvm-symbolizer < %t.input | FileCheck %s --check-prefix=CHECK-NOHINT
|
|
RUN: llvm-symbolizer -dsym-hint=%p/Inputs/dsym-test-exe-differentname.dSYM < %t.input | FileCheck %s --check-prefix=CHECK-HINT
|
|
|
|
CHECK-NOHINT: main
|
|
CHECK-NOHINT: dsym-test.c
|
|
CHECK-NOHINT: main
|
|
CHECK-NOHINT: ??:0:0
|
|
|
|
CHECK-HINT: main
|
|
CHECK-HINT: dsym-test.c
|
|
CHECK-HINT: main
|
|
CHECK-HINT: dsym-test.c
|