]> granicus.if.org Git - clang/commitdiff
[test] Use --sysroot instead of -B in print-multi-directory.c
authorMartin Storsjo <martin@martin.st>
Wed, 3 Oct 2018 18:24:05 +0000 (18:24 +0000)
committerMartin Storsjo <martin@martin.st>
Wed, 3 Oct 2018 18:24:05 +0000 (18:24 +0000)
This avoids finding a similar matching GCC installation outside
of the test directory tree in the surrounding environment, which
would make the test fail. (This happened on Ubuntu 16.04.)

Differential Revision: https://reviews.llvm.org/D52533

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@343702 91177308-0d34-0410-b5e6-96231b3b80d8

test/Driver/print-multi-directory.c

index c98715d71e6e77a2d14dbd93be24107cb7c7b6c9..5fb6a118e115477c13d04466ebc6d1c0cd91bd60 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \
 // RUN:     -target i386-none-linux \
-// RUN:     -B%S/Inputs/multilib_64bit_linux_tree/usr \
+// RUN:     --sysroot=%S/Inputs/multilib_64bit_linux_tree/usr \
 // RUN:     -print-multi-directory \
 // RUN:   | FileCheck --match-full-lines --check-prefix=CHECK-X86-MULTILIBS %s
 
@@ -9,7 +9,7 @@
 
 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \
 // RUN:     -target i386-none-linux -m64 \
-// RUN:     -B%S/Inputs/multilib_64bit_linux_tree/usr \
+// RUN:     --sysroot=%S/Inputs/multilib_64bit_linux_tree/usr \
 // RUN:     -print-multi-directory \
 // RUN:   | FileCheck --match-full-lines --check-prefix=CHECK-X86_64-MULTILIBS %s