[Mlir-commits] [mlir] [mlir][vector] Add missing lit CFG file (PR #218445)

Andrzej WarzyƄski llvmlistbot at llvm.org
Mon Aug 24 08:57:03 PDT 2026


https://github.com/banach-space created https://github.com/llvm/llvm-project/pull/218445

This file was meant to be added in #216098 - it makes sure that tests
under mlir/test/Integration/Dialect/Vector/CPU/ArmNeon are only run when
`MLIR_RUN_ARM_NEON_TESTS` is set.


>From 72933165bb8a16ba4cdb9b26d7c63158d644c930 Mon Sep 17 00:00:00 2001
From: Andrzej Warzynski <andrzej.warzynski at arm.com>
Date: Mon, 24 Aug 2026 16:55:07 +0100
Subject: [PATCH] [mlir][vector] Add missing lit CFG file

This file was meant to be added in #216098 - it makes sure that tests
under mlir/test/Integration/Dialect/Vector/CPU/ArmNeon are only run when
`MLIR_RUN_ARM_NEON_TESTS` is set.
---
 .../Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 mlir/test/Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg

diff --git a/mlir/test/Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg b/mlir/test/Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg
new file mode 100644
index 0000000000000..698fc7483d72e
--- /dev/null
+++ b/mlir/test/Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg
@@ -0,0 +1,9 @@
+import sys
+
+# ArmNeon tests must be enabled via build flag.
+if not config.mlir_run_arm_neon_tests:
+    config.unsupported = True
+
+# No JIT on win32.
+if sys.platform == "win32":
+    config.unsupported = True



More information about the Mlir-commits mailing list