llvm-project/clang/test/Driver/print-multi-directory.c
Louis Dionne 731264b0c2 [clang][NFC] Fix location of 2>&1 in a few -print tests
While it's apparently valid to place Bash redirections anywhere in a
command-line, it is by far most frequently placed last. This changes
a few tests that did not conform to this convention and which I
originally thought were wrong.

Differential Revision: https://reviews.llvm.org/D146155
2023-03-25 15:57:20 -04:00

29 lines
1.1 KiB
C

// RUN: %clang -### %s \
// RUN: --target=i386-none-linux \
// RUN: --sysroot=%S/Inputs/multilib_64bit_linux_tree/usr \
// RUN: -print-multi-directory 2>/dev/null \
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86-MULTILIBS %s
// CHECK-X86-MULTILIBS: 32
// CHECK-X86-MULTILIBS-NOT: {{^.+$}}
// RUN: %clang -### %s \
// RUN: --target=i386-none-linux -m64 \
// RUN: --sysroot=%S/Inputs/multilib_64bit_linux_tree/usr \
// RUN: -print-multi-directory 2>/dev/null \
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86_64-MULTILIBS %s
// CHECK-X86_64-MULTILIBS: .
// CHECK-X86_64-MULTILIBS-NOT: {{^.+$}}
// RUN: %clang -### %s \
// RUN: --target=arm-linux-androideabi21 \
// RUN: -mthumb \
// RUN: --gcc-toolchain=%S/Inputs/basic_android_ndk_tree \
// RUN: --sysroot=%S/Inputs/basic_android_ndk_tree/sysroot \
// RUN: -print-multi-directory 2>/dev/null \
// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-ARM-MULTILIBS %s
// CHECK-ARM-MULTILIBS: thumb
// CHECK-ARM-MULTILIBS-NOT: {{^.+$}}