Skip to content

Commit be5141c

Browse files
committed
Disable JitCall test that fails on windows + cling
1 parent 36c101f commit be5141c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

unittests/CppInterOp/FunctionReflectionTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,9 @@ TEST(FunctionReflectionTest, JitCallAdvanced) {
868868
TEST(FunctionReflectionTest, GetFunctionCallWrapper) {
869869
if (llvm::sys::RunningOnValgrind())
870870
GTEST_SKIP() << "XFAIL due to Valgrind report";
871+
#if defined(USE_CLING) && defined(_WIN32)
872+
GTEST_SKIP() << "Disabled, invoking functions containing printf does not work with Cling on Windows";
873+
#endif
871874
std::vector<Decl*> Decls;
872875
std::string code = R"(
873876
int f1(int i) { return i * i; }

0 commit comments

Comments
 (0)