[clang] Match .exe on Windows (PR #128894)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 26 07:47:05 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Chris B (llvm-beanz)
<details>
<summary>Changes</summary>
If you have zlib (not standard) on Windows, this test runs, and it was missing a match for the file extension on lld.
---
Full diff: https://github.com/llvm/llvm-project/pull/128894.diff
1 Files Affected:
- (modified) clang/test/Driver/hip-gz-options.hip (+1-1)
``````````diff
diff --git a/clang/test/Driver/hip-gz-options.hip b/clang/test/Driver/hip-gz-options.hip
index 7425d5fa847b3..bdef24e052ffb 100644
--- a/clang/test/Driver/hip-gz-options.hip
+++ b/clang/test/Driver/hip-gz-options.hip
@@ -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"
``````````
</details>
https://github.com/llvm/llvm-project/pull/128894
More information about the cfe-commits
mailing list