We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6dc6be commit 68c6e93Copy full SHA for 68c6e93
llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -52,6 +52,14 @@ class ReOptimizeLayerTest : public testing::Test {
52
if (Triple.isX86() && Triple.isArch32Bit())
53
GTEST_SKIP();
54
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
+
63
if (Triple.isPPC())
64
65
0 commit comments