mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
0810cc930c
llvm-svn: 352918
18 lines
775 B
Plaintext
18 lines
775 B
Plaintext
# REQUIRES: shell
|
|
# Ensure that no realpath assumptions are made about .gnu_debuglink paths.
|
|
|
|
# Copy inputs to some other location with arbitrary names, with the original
|
|
# filenames just being symlinks to the copies. Real files go in the "real" dir,
|
|
# symlinks (with original names) go in "syms".
|
|
RUN: rm -rf %t/real %t/syms
|
|
RUN: mkdir -p %t/real %t/syms
|
|
RUN: cp %p/Inputs/dwarfdump-test.elf-x86-64 %t/real/prog
|
|
RUN: cp %p/Inputs/dwarfdump-test.elf-x86-64.debuglink %t/real/link
|
|
RUN: ln -s %t/real/prog %t/syms/dwarfdump-test.elf-x86-64
|
|
RUN: ln -s %t/real/link %t/syms/dwarfdump-test.elf-x86-64.debuglink
|
|
|
|
RUN: llvm-symbolizer --obj=%t/syms/dwarfdump-test.elf-x86-64.debuglink 0x40113f | FileCheck %s
|
|
|
|
CHECK: main
|
|
CHECK-NEXT: /tmp/dbginfo{{[/\\]}}dwarfdump-test.cc:16
|