[llvm] 95d440c - [ORC] skip reoptimization tests on ARM (#130178)

via llvm-commits llvm-commits at lists.llvm.org
Fri May 9 02:00:50 PDT 2025


Author: fossdd
Date: 2025-05-09T11:00:47+02:00
New Revision: 95d440cc7c398dbba8ac27af8e1690460b4e88bf

URL: https://github.com/llvm/llvm-project/commit/95d440cc7c398dbba8ac27af8e1690460b4e88bf
DIFF: https://github.com/llvm/llvm-project/commit/95d440cc7c398dbba8ac27af8e1690460b4e88bf.diff

LOG: [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)

Added: 
    

Modified: 
    llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
index a7edac29d1e99..71fd255a68c8b 100644
--- a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -59,6 +59,10 @@ class ReOptimizeLayerTest : public testing::Test {
     if (Triple.isRISCV())
       GTEST_SKIP();
 
+    // ARM is not supported yet.
+    if (Triple.isARM())
+      GTEST_SKIP();
+
     auto EPC = SelfExecutorProcessControl::Create();
     if (!EPC) {
       consumeError(EPC.takeError());


        


More information about the llvm-commits mailing list