forked from OSchip/llvm-project
Fix bot failure after ccb4124a41
The test case has a check line for the option on a line that includes the string lld surrounded by any characters. This causes failures when said string is in the build path. What the test case presumably means to test is the actual invocation of the LLD linker (i.e. a linker that has that string as a suffix). This patch simply removes the erroneous wildcard after the string.
This commit is contained in:
parent
03f1516d60
commit
3bc3983f22
|
@ -9,6 +9,6 @@
|
|||
// RUN: -ggdb -gz=zlib 2>&1 | FileCheck %s
|
||||
|
||||
// CHECK-DAG: {{".*clang.*" .* "--compress-debug-sections=zlib"}}
|
||||
// CHECK-DAG: {{".*lld.*" .* "--compress-debug-sections=zlib"}}
|
||||
// CHECK-DAG: {{".*lld" .* "--compress-debug-sections=zlib"}}
|
||||
// CHECK-DAG: {{".*clang.*" .* "--compress-debug-sections=zlib"}}
|
||||
// CHECK: "--compress-debug-sections=zlib"
|
||||
|
|
Loading…
Reference in New Issue