diff --git a/unittests/CppInterOp/FunctionReflectionTest.cpp b/unittests/CppInterOp/FunctionReflectionTest.cpp index efc1ca815..a3ea7cbc4 100644 --- a/unittests/CppInterOp/FunctionReflectionTest.cpp +++ b/unittests/CppInterOp/FunctionReflectionTest.cpp @@ -868,6 +868,9 @@ TEST(FunctionReflectionTest, JitCallAdvanced) { TEST(FunctionReflectionTest, GetFunctionCallWrapper) { if (llvm::sys::RunningOnValgrind()) GTEST_SKIP() << "XFAIL due to Valgrind report"; +#if defined(USE_CLING) && defined(_WIN32) + GTEST_SKIP() << "Disabled, invoking functions containing printf does not work with Cling on Windows"; +#endif std::vector Decls; std::string code = R"( int f1(int i) { return i * i; }