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 1457e00 commit 2057848Copy full SHA for 2057848
llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -43,6 +43,14 @@ class ReOptimizeLayerTest : public testing::Test {
43
if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
44
GTEST_SKIP();
45
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
+
54
if (Triple.isPPC())
55
56
0 commit comments