diff options
author | Filipe Cabecinhas <me@filcab.net> | 2015-02-12 03:37:55 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2015-02-12 03:37:55 +0000 |
commit | d0c6468a2b2b5dc980cf36d0c210c0e7a16a3a71 (patch) | |
tree | 17933f5e3354232ae1c9ac285bd14df3bf2e0673 /clang/test/Driver/clang_f_opts.c | |
parent | 33305e7280f05453854628c883071ab82f4729cb (diff) | |
download | bcm5719-llvm-d0c6468a2b2b5dc980cf36d0c210c0e7a16a3a71.tar.gz bcm5719-llvm-d0c6468a2b2b5dc980cf36d0c210c0e7a16a3a71.zip |
Fix tests so they work when the linker is gcc
If the linker is gcc (the default for Generic_ELF toolchains), we end up
passing most of the arguments to the linker.
Some tests were failing to account for this in their usage of *-NOT: lines
and would fail if compiled with
-DLLVM_DEFAULT_TARGET_TRIPLE=x86_64-unknown-unknown
llvm-svn: 228902
Diffstat (limited to 'clang/test/Driver/clang_f_opts.c')
-rw-r--r-- | clang/test/Driver/clang_f_opts.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/clang/test/Driver/clang_f_opts.c b/clang/test/Driver/clang_f_opts.c index 3ca9f284752..f6fe9b9894a 100644 --- a/clang/test/Driver/clang_f_opts.c +++ b/clang/test/Driver/clang_f_opts.c @@ -384,9 +384,13 @@ // CHECK-NO-WARNING2-NOT: optimization flag '-finline-limit' is not supported -// RUN: %clang -### -fshort-wchar -fno-short-wchar %s 2>&1 | FileCheck -check-prefix=CHECK-WCHAR1 %s -// RUN: %clang -### -fno-short-wchar -fshort-wchar %s 2>&1 | FileCheck -check-prefix=CHECK-WCHAR2 %s +// RUN: %clang -### -fshort-wchar -fno-short-wchar %s 2>&1 | FileCheck -check-prefix=CHECK-WCHAR1 -check-prefix=DELIMITERS %s +// RUN: %clang -### -fno-short-wchar -fshort-wchar %s 2>&1 | FileCheck -check-prefix=CHECK-WCHAR2 -check-prefix=DELIMITERS %s +// Make sure we don't match the -NOT lines with the linker invocation. +// Delimiters match the start of the cc1 and the start of the linker lines +// DELIMITERS: {{^ *"}} // CHECK-WCHAR1: -fno-short-wchar // CHECK-WCHAR1-NOT: -fshort-wchar // CHECK-WCHAR2: -fshort-wchar // CHECK-WCHAR2-NOT: -fno-short-wchar +// DELIMITERS: {{^ *"}} |