[Mlir-commits] [mlir] 1794dfb - [mlir] Fix integration test when `%host_cc` path contains spaces (#128439)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Feb 23 15:20:29 PST 2025
Author: Ivan Butygin
Date: 2025-02-24T02:20:26+03:00
New Revision: 1794dfbb0fcc549aff99764ea11309532e5553d1
URL: https://github.com/llvm/llvm-project/commit/1794dfbb0fcc549aff99764ea11309532e5553d1
DIFF: https://github.com/llvm/llvm-project/commit/1794dfbb0fcc549aff99764ea11309532e5553d1.diff
LOG: [mlir] Fix integration test when `%host_cc` path contains spaces (#128439)
Added:
Modified:
mlir/test/Integration/Dialect/MemRef/memref_abi.c
Removed:
################################################################################
diff --git a/mlir/test/Integration/Dialect/MemRef/memref_abi.c b/mlir/test/Integration/Dialect/MemRef/memref_abi.c
index 3fb19177deb09..110ab449b5a34 100644
--- a/mlir/test/Integration/Dialect/MemRef/memref_abi.c
+++ b/mlir/test/Integration/Dialect/MemRef/memref_abi.c
@@ -12,7 +12,7 @@
// RUN: llc %t.ll -o %t.o -filetype=obj
// Compile the current C file and link it to the MLIR code:
-// RUN: %host_cc %s %t.o -o %t.exe
+// RUN: "%host_cc" %s %t.o -o %t.exe
// Exec
// RUN: %t.exe | FileCheck %s
More information about the Mlir-commits
mailing list