diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:04:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:04:05 +0000 |
commit | 676fbe8105eeb6ff4bb2ed261cb212fcfdbe7b63 (patch) | |
tree | 02a1ac369cb734d0abfa5000dd86e5b7797e6a74 /test/Driver/print-multi-directory.c | |
parent | c7e70c433efc6953dc3888b9fbf9f3512d7da2b0 (diff) |
Diffstat (limited to 'test/Driver/print-multi-directory.c')
-rw-r--r-- | test/Driver/print-multi-directory.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/Driver/print-multi-directory.c b/test/Driver/print-multi-directory.c new file mode 100644 index 0000000000000..5fb6a118e1154 --- /dev/null +++ b/test/Driver/print-multi-directory.c @@ -0,0 +1,28 @@ +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \ +// RUN: -target i386-none-linux \ +// 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: --sysroot=%S/Inputs/multilib_64bit_linux_tree/usr \ +// RUN: -print-multi-directory \ +// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-X86_64-MULTILIBS %s + +// CHECK-X86_64-MULTILIBS: . +// CHECK-X86_64-MULTILIBS-NOT: {{^.+$}} + +// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>/dev/null \ +// RUN: -target arm-linux-androideabi21 \ +// RUN: -mthumb \ +// RUN: -B%S/Inputs/basic_android_ndk_tree \ +// RUN: --sysroot=%S/Inputs/basic_android_ndk_tree/sysroot \ +// RUN: -print-multi-directory \ +// RUN: | FileCheck --match-full-lines --check-prefix=CHECK-ARM-MULTILIBS %s + +// CHECK-ARM-MULTILIBS: thumb +// CHECK-ARM-MULTILIBS-NOT: {{^.+$}} |