Skip to content

Commit

Permalink
[ORC] skip reoptimization tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jsji committed Nov 9, 2024
1 parent 1457e00 commit 2057848
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ class ReOptimizeLayerTest : public testing::Test {
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
GTEST_SKIP();

// Failing on Windows builder.
// JIT session error: Symbols not found: [ __ImageBase ]
// unknown file: error: SEH exception with code 0x3221225477 thrown in the test body.
#if defined(_WIN32)
if (Triple.isX86())
GTEST_SKIP();
#endif

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

Expand Down

0 comments on commit 2057848

Please sign in to comment.