forked from OSchip/llvm-project
[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
This commit is contained in:
parent
0b451a2983
commit
ed9688db30
|
@ -1,6 +1,6 @@
|
||||||
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \
|
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \
|
||||||
// RUN: -target i386-none-linux \
|
// 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: -print-multi-directory \
|
||||||
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86-MULTILIBS %s
|
// 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: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \
|
||||||
// RUN: -target i386-none-linux -m64 \
|
// 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: -print-multi-directory \
|
||||||
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86_64-MULTILIBS %s
|
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86_64-MULTILIBS %s
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue