[PATCH] D52533: [test] Use --sysroot instead of -B in print-multi-directory.c

Martin Storsjö via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 26 01:00:51 PDT 2018


mstorsjo created this revision.
mstorsjo added reviewers: chrib, dyung.

This avoids finding a similar matching GCC installation outside of the test directory tree in the surrounding environment, which would make the test fail.


Repository:
  rC Clang

https://reviews.llvm.org/D52533

Files:
  test/Driver/print-multi-directory.c


Index: test/Driver/print-multi-directory.c
===================================================================
--- test/Driver/print-multi-directory.c
+++ test/Driver/print-multi-directory.c
@@ -1,15 +1,15 @@
 // 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
 
 // CHECK-X86-MULTILIBS:      32
 // CHECK-X86-MULTILIBS-NOT:  {{^.+$}}
 
 // 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
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52533.167066.patch
Type: text/x-patch
Size: 991 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180926/b25c8b63/attachment.bin>


More information about the cfe-commits mailing list