aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2013-01-31 01:15:55 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2013-01-31 01:15:55 +0000
commit7ba96aed23906c20c48a388ce10212e81174827c (patch)
treea5cbda65e666993723dec6253d2ca2b3a4af786b /test
parent1166723df8af0f062c3f6d473d8ae7bb2b64e572 (diff)
Sometimes ld is just ld.
Don't expect a character between the double-quotes and 'ld'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174015 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Driver/asan-ld.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Driver/asan-ld.c b/test/Driver/asan-ld.c
index 96155713f6..ebf915c68c 100644
--- a/test/Driver/asan-ld.c
+++ b/test/Driver/asan-ld.c
@@ -5,7 +5,7 @@
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
// RUN: | FileCheck --check-prefix=CHECK-LINUX %s
//
-// CHECK-LINUX: "{{.*[^-.0-9A-Z_a-z]}}ld{{(.exe)?}}"
+// CHECK-LINUX: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
// CHECK-LINUX-NOT: "-lc"
// CHECK-LINUX: libclang_rt.asan-i386.a"
// CHECK-LINUX: "-lpthread"
@@ -17,7 +17,7 @@
// RUN: --sysroot=%S/Inputs/basic_linux_tree \
// RUN: | FileCheck --check-prefix=CHECK-LINUX-CXX %s
//
-// CHECK-LINUX-CXX: "{{.*[^-.0-9A-Z_a-z]}}ld{{(.exe)?}}"
+// CHECK-LINUX-CXX: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
// CHECK-LINUX-CXX-NOT: "-lc"
// CHECK-LINUX-CXX: "-whole-archive" "{{.*}}libclang_rt.asan-i386.a" "-no-whole-archive"
// CHECK-LINUX-CXX: "-lpthread"
@@ -30,7 +30,7 @@
// RUN: -lstdc++ -static 2>&1 \
// RUN: | FileCheck --check-prefix=CHECK-LINUX-CXX-STATIC %s
//
-// CHECK-LINUX-CXX-STATIC: "{{.*[^-.0-9A-Z_a-z]}}ld{{(.exe)?}}"
+// CHECK-LINUX-CXX-STATIC: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
// CHECK-LINUX-CXX-STATIC-NOT: stdc++
// CHECK-LINUX-CXX-STATIC: "-whole-archive" "{{.*}}libclang_rt.asan-i386.a" "-no-whole-archive"
// CHECK-LINUX-CXX-STATIC: stdc++
@@ -40,7 +40,7 @@
// RUN: --sysroot=%S/Inputs/basic_android_tree/sysroot \
// RUN: | FileCheck --check-prefix=CHECK-ANDROID %s
//
-// CHECK-ANDROID: "{{.*[^-.0-9A-Z_a-z]}}ld{{(.exe)?}}"
+// CHECK-ANDROID: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
// CHECK-ANDROID-NOT: "-lc"
// CHECK-ANDROID: libclang_rt.asan-arm-android.so"
// CHECK-ANDROID-NOT: "-lpthread"
@@ -51,7 +51,7 @@
// RUN: -shared \
// RUN: | FileCheck --check-prefix=CHECK-ANDROID-SHARED %s
//
-// CHECK-ANDROID-SHARED: "{{.*[^-.0-9A-Z_a-z]}}ld{{(.exe)?}}"
+// CHECK-ANDROID-SHARED: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
// CHECK-ANDROID-SHARED-NOT: "-lc"
// CHECK-ANDROID-SHARED: libclang_rt.asan-arm-android.so"
// CHECK-ANDROID-SHARED-NOT: "-lpthread"