From f22f7d71645ef783e405a36880790b82682abb10 Mon Sep 17 00:00:00 2001 From: Aaron Jomy <75925957+aaronj0@users.noreply.github.com> Date: Mon, 17 Feb 2025 11:04:04 +0100 Subject: [PATCH] Disable JitCall test that fails on windows + cling --- unittests/CppInterOp/FunctionReflectionTest.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; }