Fix Windows llvm-objdump tests
authorRenato Golin <rengolin@systemcall.eu>
Fri, 16 Oct 2020 20:26:46 +0000 (21:26 +0100)
committerRenato Golin <rengolin@systemcall.eu>
Fri, 16 Oct 2020 20:28:32 +0000 (21:28 +0100)
Broken in e95f9a23fad with path issues.

llvm/test/tools/llvm-objdump/X86/source-interleave-prefix-non-windows.test
llvm/test/tools/llvm-objdump/X86/source-interleave-prefix.test

index a32d1b7..aa74a36 100644 (file)
@@ -7,4 +7,4 @@
 ; RUN: sed -e "s,SRC_COMPDIR,/Inputs,g" %p/Inputs/source-interleave.ll > %t.ll
 ; RUN: llc -o %t.o -filetype=obj -mtriple=x86_64-pc-linux %t.ll
 ; RUN: llvm-objdump --prefix 'myprefix/\' --source %t.o 2>&1 | FileCheck %s -DFILE=%t.o -DPREFIX='myprefix/\'
-; CHECK: warning: '[[FILE]]': failed to find source [[PREFIX]]/Inputs/source-interleave-x86_64.c
+; CHECK: warning: '[[FILE]]': failed to find source {{.*}}source-interleave-x86_64.c
index b384c49..c34cb39 100644 (file)
@@ -7,7 +7,7 @@
 ; RUN: llc -o %t-relative-path.o -filetype=obj -mtriple=x86_64-pc-linux %t-relative-path.ll
 ; RUN: llvm-objdump --prefix myprefix --source %t-relative-path.o 2>&1 | \
 ; RUN:   FileCheck %s --check-prefix=CHECK-BROKEN-PREFIX -DFILE=%t-relative-path.o -DPREFIX=.
-; CHECK-BROKEN-PREFIX: warning: '[[FILE]]': failed to find source [[PREFIX]]/Inputs/source-interleave-x86_64.c
+; CHECK-BROKEN-PREFIX: warning: '[[FILE]]': failed to find source {{.*}}source-interleave-x86_64.c
 
 ;; Test invalid source interleave fixed by adding the correct prefix.