Skip to content

Commit 68c6e93

Browse files
committed
Fix conflict resolution in ReOptimizeLayerTest.cpp
1 parent a6dc6be commit 68c6e93

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
@@ -52,6 +52,14 @@ class ReOptimizeLayerTest : public testing::Test {
5252
if (Triple.isX86() && Triple.isArch32Bit())
5353
GTEST_SKIP();
5454

55+
// Failing on Windows builder.
56+
// JIT session error: Symbols not found: [ __ImageBase ]
57+
// unknown file: error: SEH exception with code 0x3221225477 thrown in the test body.
58+
#if defined(_WIN32)
59+
if (Triple.isX86())
60+
GTEST_SKIP();
61+
#endif
62+
5563
if (Triple.isPPC())
5664
GTEST_SKIP();
5765

0 commit comments

Comments
 (0)