[Mlir-commits] [mlir] [mlir] Fix integration test when `%host_cc` path contains spaces (PR #128439)

Ivan Butygin llvmlistbot at llvm.org
Sun Feb 23 14:32:36 PST 2025


https://github.com/Hardcode84 created https://github.com/llvm/llvm-project/pull/128439

None

>From f9f9092e3fcdb718e5b1dd37ff3bcd5aa529d3ac Mon Sep 17 00:00:00 2001
From: Ivan Butygin <ivan.butygin at gmail.com>
Date: Sun, 23 Feb 2025 23:30:23 +0100
Subject: [PATCH] [mlir] Fix integration test when `%host_cc` path contains
 spaces

---
 mlir/test/Integration/Dialect/MemRef/memref_abi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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