Skip to content

Commit

Permalink
[ORC] skip reoptimization tests on s390x. (llvm#112796)
Browse files Browse the repository at this point in the history
The test was failing on s390x with this error:

JIT session error: Unsupported target machine architecture in ELF object
<main>-jitted-objectbuffer
  • Loading branch information
tstellar authored and EricWF committed Oct 22, 2024
1 parent 55bd258 commit 188f6dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 188f6dd

Please sign in to comment.