[llvm] 606cf88 - [ExecutionEngine][test][RISCV] Don't mark RISCV as unsupported (#124464)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 28 05:23:43 PST 2025
Author: Alex Bradbury
Date: 2025-01-28T13:23:40Z
New Revision: 606cf887416ba2f136f3104ac12469fc81f73968
URL: https://github.com/llvm/llvm-project/commit/606cf887416ba2f136f3104ac12469fc81f73968
DIFF: https://github.com/llvm/llvm-project/commit/606cf887416ba2f136f3104ac12469fc81f73968.diff
LOG: [ExecutionEngine][test][RISCV] Don't mark RISCV as unsupported (#124464)
Although MCJIT is unsupported, we can and should be running the other
tests. Stacks on top of #124463 (needed to avoid unsupported MCJIT tests
in the top-level test/ExecutionEngine directory running when they
shouldn't).
This effectively reverts b8feeba0b407e703385738af7e415d0c8972a420.
ninja check-llvm-executionengine before:
Total Discovered Tests: 335
Unsupported: 335 (100.00%)
ninja check-llvm-executionengine after:
Total Discovered Tests: 335
Unsupported : 125 (37.31%)
Passed : 209 (62.39%)
Expectedly Failed: 1 (0.30%)
Added:
Modified:
llvm/test/ExecutionEngine/lit.local.cfg
Removed:
################################################################################
diff --git a/llvm/test/ExecutionEngine/lit.local.cfg b/llvm/test/ExecutionEngine/lit.local.cfg
index c748de14c84094..1951f140ea8897 100644
--- a/llvm/test/ExecutionEngine/lit.local.cfg
+++ b/llvm/test/ExecutionEngine/lit.local.cfg
@@ -1,4 +1,4 @@
-if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon', 'RISCV']:
+if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon']:
config.unsupported = True
# ExecutionEngine tests are not expected to pass in a cross-compilation setup.
More information about the llvm-commits
mailing list