[llvm] 9b7be3e - [ORC] skip reoptimization tests on s390x. (#112796)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 21 14:43:00 PDT 2024
Author: Tom Stellard
Date: 2024-10-21T14:42:56-07:00
New Revision: 9b7be3ebe5c15ff43cfb5232a572289a83f20294
URL: https://github.com/llvm/llvm-project/commit/9b7be3ebe5c15ff43cfb5232a572289a83f20294
DIFF: https://github.com/llvm/llvm-project/commit/9b7be3ebe5c15ff43cfb5232a572289a83f20294.diff
LOG: [ORC] skip reoptimization tests on s390x. (#112796)
The test was failing on s390x with this error:
JIT session error: Unsupported target machine architecture in ELF object
<main>-jitted-objectbuffer
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 4f0850022cf1e9..db2b767607b972 100644
--- a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -43,6 +43,10 @@ class ReOptimizeLayerTest : public testing::Test {
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
GTEST_SKIP();
+ // SystemZ is not supported yet.
+ if (Triple.isSystemZ())
+ GTEST_SKIP();
+
if (Triple.isPPC())
GTEST_SKIP();
More information about the llvm-commits
mailing list