Skip to content

Commit 95d440c

Browse files
authored
[ORC] skip reoptimization tests on ARM (#130178)
It failed on armv7 with "Architecture not supported" which is due to StubTests being not supported on ARM /builds/fossdd/aports/main/llvm20/src/llvm-project-20.1.0.src/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp:140: Failure Value of: llvm::detail::TakeError(RM.takeError()) Expected: succeeded Actual: failed (Architecture not supported) (of type llvm::detail::ErrorHolder)
1 parent 92d2e13 commit 95d440c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ class ReOptimizeLayerTest : public testing::Test {
5959
if (Triple.isRISCV())
6060
GTEST_SKIP();
6161

62+
// ARM is not supported yet.
63+
if (Triple.isARM())
64+
GTEST_SKIP();
65+
6266
auto EPC = SelfExecutorProcessControl::Create();
6367
if (!EPC) {
6468
consumeError(EPC.takeError());

0 commit comments

Comments
 (0)