mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
0fea775e5c
llvm-symbolizer will consult one of the .dSYM paths passed via -dsym-hint if it fails to find the .dSYM bundle at the default location. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220004 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
511 B
Plaintext
15 lines
511 B
Plaintext
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
|