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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Aug 24 08:57:51 PDT 2026


llvmorg-github-actions[bot] wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir

Author: Andrzej WarzyƄski (banach-space)

<details>
<summary>Changes</summary>

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.


---
Full diff: https://github.com/llvm/llvm-project/pull/218445.diff


1 Files Affected:

- (added) mlir/test/Integration/Dialect/Vector/CPU/ArmNeon/lit.local.cfg (+9) 


``````````diff
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

``````````

</details>


https://github.com/llvm/llvm-project/pull/218445


More information about the Mlir-commits mailing list