Skip to content

Commit e5f7e73

Browse files
committed
[ORC] Skip reoptimization test on COFF-ARM64.
Try to skip tests to prevent build bot failure: https://lab.llvm.org/buildbot/#/builders/161/builds/2692
1 parent 9fe567f commit e5f7e73

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

llvm/unittests/ExecutionEngine/Orc/JITLinkRedirectionManagerTest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ class JITLinkRedirectionManagerTest : public testing::Test {
3838
GTEST_SKIP();
3939
}
4040

41+
// COFF-ARM64 is not supported yet
42+
auto Triple = JTMB->getTargetTriple();
43+
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
44+
GTEST_SKIP();
45+
4146
ES = std::make_unique<ExecutionSession>(
4247
std::make_unique<UnsupportedExecutorProcessControl>(
4348
nullptr, nullptr, JTMB->getTargetTriple().getTriple()));

llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ class ReOptimizeLayerTest : public testing::Test {
3838
GTEST_SKIP();
3939
}
4040

41+
// COFF-ARM64 is not supported yet
42+
auto Triple = JTMB->getTargetTriple();
43+
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
44+
GTEST_SKIP();
45+
4146
auto EPC = SelfExecutorProcessControl::Create();
4247
if (!EPC) {
4348
consumeError(EPC.takeError());

0 commit comments

Comments
 (0)