mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
e5c30b9eef
Pulling out the split-dwarf tests by way of example of how I think llvm-symbolizer should be tested going forward. Open to debate/discussion, though. llvm-svn: 352004
13 lines
295 B
Plaintext
13 lines
295 B
Plaintext
RUN: rm -rf %t
|
|
RUN: mkdir -p %t
|
|
RUN: cp %p/Inputs/split-dwarf-multiple-cu.dwo %t
|
|
|
|
RUN: cd %t
|
|
RUN: llvm-symbolizer --obj=%p/Inputs/split-dwarf-multiple-cu.o 0x4 | FileCheck %s
|
|
|
|
CHECK: f2
|
|
CHECK-NEXT: split-dwarf-multiple-cu.cpp:3:3
|
|
CHECK-NEXT: f3
|
|
CHECK-NEXT: split-dwarf-multiple-cu.cpp:6:0
|
|
|