Skip to content

Commit cf3aa84

Browse files
committed
[test] disable failing test on Win32 ARM
1 parent 2fe65fc commit cf3aa84

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

unittests/CppInterOp/DynamicLibraryManagerTest.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ TEST(DynamicLibraryManagerTest, Sanity) {
2121
#ifdef EMSCRIPTEN
2222
GTEST_SKIP() << "Test fails for Emscipten builds";
2323
#endif
24+
25+
#if defined(_WIN32) && (defined(_M_ARM) || defined(_M_ARM64))
26+
GTEST_SKIP() << "Test fails on Windows + Arm";
27+
#endif
28+
2429
EXPECT_TRUE(Cpp::CreateInterpreter());
2530
EXPECT_FALSE(Cpp::GetFunctionAddress("ret_zero"));
2631

0 commit comments

Comments
 (0)