-
Notifications
You must be signed in to change notification settings - Fork 14.2k
A more precise matching for the driver test #129611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Maybe this fixes issues detected after llvm#128894
@llvm/pr-subscribers-clang-driver @llvm/pr-subscribers-clang Author: Chris B (llvm-beanz) ChangesMaybe this fixes issues detected after #128894 Full diff: https://github.com/llvm/llvm-project/pull/129611.diff 1 Files Affected:
diff --git a/clang/test/Driver/hip-gz-options.hip b/clang/test/Driver/hip-gz-options.hip
index bdef24e052ffb..36de8e8404020 100644
--- a/clang/test/Driver/hip-gz-options.hip
+++ b/clang/test/Driver/hip-gz-options.hip
@@ -8,7 +8,7 @@
// RUN: -fgpu-rdc --offload-arch=gfx906 %s -nogpulib -nogpuinc \
// RUN: -ggdb -gz=zlib 2>&1 | FileCheck %s
-// CHECK-DAG: {{".*clang.*" .* "--compress-debug-sections=zlib"}}
-// CHECK-DAG: {{".*lld.*" .* "--compress-debug-sections=zlib"}}
-// CHECK-DAG: {{".*clang.*" .* "--compress-debug-sections=zlib"}}
+// CHECK-DAG: {{".*clang(-[0-9]+)?(.exe)?" .* "--compress-debug-sections=zlib"}}
+// CHECK-DAG: {{".*lld(.exe)?" .* "--compress-debug-sections=zlib"}}
+// CHECK-DAG: {{".*clang(-[0-9]+)?(.exe)?" .* "--compress-debug-sections=zlib"}}
// CHECK: "--compress-debug-sections=zlib"
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/88/builds/8726 Here is the relevant piece of the build log for the reference
|
The issue was likely that the build directory name We usually don't test specific strings like Instead, we just check |
Maybe this fixes issues detected after llvm#128894
Maybe this fixes issues detected after #128894