Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions unittests/CppInterOp/FunctionReflectionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<Decl*> Decls;
std::string code = R"(
int f1(int i) { return i * i; }
Expand Down
Loading