Skip to content

Commit 2057848

Browse files
committed
[ORC] skip reoptimization tests on windows
Disable the test for now. https://github.com/intel/llvm/actions/runs/11758403932/job/32756817619?pr=16022
1 parent 1457e00 commit 2057848

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

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

46+
// Failing on Windows builder.
47+
// JIT session error: Symbols not found: [ __ImageBase ]
48+
// unknown file: error: SEH exception with code 0x3221225477 thrown in the test body.
49+
#if defined(_WIN32)
50+
if (Triple.isX86())
51+
GTEST_SKIP();
52+
#endif
53+
4654
if (Triple.isPPC())
4755
GTEST_SKIP();
4856

0 commit comments

Comments
 (0)