Skip to content

Commit 39aae57

Browse files
committed
[ORC] skip reoptimization tests on PPC.
Fix https://lab.llvm.org/buildbot/#/builders/64/builds/1202.
1 parent 7f06d8a commit 39aae57

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ class JITLinkRedirectionManagerTest : public testing::Test {
4343
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
4444
GTEST_SKIP();
4545

46+
if (Triple.isPPC())
47+
GTEST_SKIP();
48+
4649
ES = std::make_unique<ExecutionSession>(
4750
std::make_unique<UnsupportedExecutorProcessControl>(
4851
nullptr, nullptr, JTMB->getTargetTriple().getTriple()));

llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ class ReOptimizeLayerTest : public testing::Test {
4343
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
4444
GTEST_SKIP();
4545

46+
if (Triple.isPPC())
47+
GTEST_SKIP();
48+
4649
auto EPC = SelfExecutorProcessControl::Create();
4750
if (!EPC) {
4851
consumeError(EPC.takeError());

0 commit comments

Comments
 (0)