Skip to content

Commit 7a68b55

Browse files
committed
[ORC] skip reoptimization tests on ARM
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 5f6b058 commit 7a68b55

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
@@ -55,6 +55,10 @@ class ReOptimizeLayerTest : public testing::Test {
5555
if (Triple.isPPC())
5656
GTEST_SKIP();
5757

58+
// ARM is not supported yet.
59+
if (Triple.isARM())
60+
GTEST_SKIP();
61+
5862
auto EPC = SelfExecutorProcessControl::Create();
5963
if (!EPC) {
6064
consumeError(EPC.takeError());

0 commit comments

Comments
 (0)