1 // REQUIRES: shell 2 // RUN: llvm-mc -triple=x86_64-linux-unknown -g -fdebug-compilation-dir=/test/comp/dir %s -filetype=obj -o %t.o 3 // RUN: llvm-dwarfdump -debug-dump=info %t.o | FileCheck %s 4 5 // CHECK: DW_AT_comp_dir [DW_FORM_string] ("{{([A-Za-z]:.*)?}}/test/comp/dir") 6 7 // RUN: mkdir -p %t.foo 8 // RUN: ln -sf %t.foo %t.bar 9 // RUN: cd %t.foo 10 // RUN: env PWD=%t.bar llvm-mc -triple=x86_64-linux-unknown -g %s -filetype=obj -o %t.o 11 // RUN: llvm-dwarfdump -debug-dump=info %t.o | FileCheck --check-prefix=PWD %s 12 // PWD: DW_AT_comp_dir [DW_FORM_string] ("{{.*}}.bar") 13 14 15 f: 16 nop 17