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:
Nemanja Ivanovic 2020-09-15 12:33:31 -05:00
parent 03f1516d60
commit 3bc3983f22
1 changed files with 1 additions and 1 deletions

View File

@ -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"