diff options
author | Martin Storsjo <martin@martin.st> | 2018-10-03 18:24:05 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2018-10-03 18:24:05 +0000 |
commit | ed9688db30a55b3d5cabaa598014c516fbcc5214 (patch) | |
tree | 6421be544b57877d0f44130144cf7acf15c62f3e /clang | |
parent | 0b451a29832e0c836ceebfe0ec90923c35fd66ad (diff) | |
download | bcm5719-llvm-ed9688db30a55b3d5cabaa598014c516fbcc5214.tar.gz bcm5719-llvm-ed9688db30a55b3d5cabaa598014c516fbcc5214.zip |
[test] Use --sysroot instead of -B in print-multi-directory.c
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
llvm-svn: 343702
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/Driver/print-multi-directory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/print-multi-directory.c b/clang/test/Driver/print-multi-directory.c index c98715d71e6..5fb6a118e11 100644 --- a/clang/test/Driver/print-multi-directory.c +++ b/clang/test/Driver/print-multi-directory.c @@ -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 |