Skip to content

Commit

Permalink
[ORC] skip reoptimization tests on i386 (#114351)
Browse files Browse the repository at this point in the history
This test currently segfaults on i386-unknown-linux-gnu builds.
  • Loading branch information
tstellar authored and jsji committed Nov 9, 2024
1 parent a1a3843 commit 43bb35f
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 @@ -47,6 +47,10 @@ class ReOptimizeLayerTest : public testing::Test {
if (Triple.isSystemZ())
GTEST_SKIP();

// 32-bit X86 is not supported yet.
if (Triple.isX86() && Triple.isArch32Bit())
GTEST_SKIP();

if (Triple.isPPC())
GTEST_SKIP();

Expand Down

0 comments on commit 43bb35f

Please sign in to comment.