Skip to content

Commit 606cf88

Browse files
authored
[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 b8feeba. 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%)
1 parent 8ad9e1e commit 606cf88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/test/ExecutionEngine/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon', 'RISCV']:
1+
if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon']:
22
config.unsupported = True
33

44
# ExecutionEngine tests are not expected to pass in a cross-compilation setup.

0 commit comments

Comments
 (0)