[llvm] 39aae57 - [ORC] skip reoptimization tests on PPC.
Sunho Kim via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 14 05:35:48 PDT 2024
Author: Sunho Kim
Date: 2024-10-14T21:35:40+09:00
New Revision: 39aae575744de7ae77e755142e0746a5b473b3ed
URL: https://github.com/llvm/llvm-project/commit/39aae575744de7ae77e755142e0746a5b473b3ed
DIFF: https://github.com/llvm/llvm-project/commit/39aae575744de7ae77e755142e0746a5b473b3ed.diff
LOG: [ORC] skip reoptimization tests on PPC.
Fix https://lab.llvm.org/buildbot/#/builders/64/builds/1202.
Added:
Modified:
llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp
llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
Removed:
################################################################################
diff --git a/llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp
index 3e80da6e981c5b..b630b72ef70816 100644
--- a/llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp
@@ -43,6 +43,9 @@ class JITLinkRedirectionManagerTest : public testing::Test {
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
GTEST_SKIP();
+ if (Triple.isPPC())
+ GTEST_SKIP();
+
ES = std::make_unique<ExecutionSession>(
std::make_unique<UnsupportedExecutorProcessControl>(
nullptr, nullptr, JTMB->getTargetTriple().getTriple()));
diff --git a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
index 2dcf1d1593a714..4f0850022cf1e9 100644
--- a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -43,6 +43,9 @@ class ReOptimizeLayerTest : public testing::Test {
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
GTEST_SKIP();
+ if (Triple.isPPC())
+ GTEST_SKIP();
+
auto EPC = SelfExecutorProcessControl::Create();
if (!EPC) {
consumeError(EPC.takeError());
More information about the llvm-commits
mailing list