From 1a17e2c80c47f50abe31318199e13f8219f98da9 Mon Sep 17 00:00:00 2001 From: Danilo Piparo Date: Wed, 17 Jun 2026 15:35:51 +0200 Subject: [PATCH] [test] Disable test which causes a stack-overflow --- core/metacling/test/TClingTests.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/metacling/test/TClingTests.cxx b/core/metacling/test/TClingTests.cxx index ad3582be3082f..0777ab12d6093 100644 --- a/core/metacling/test/TClingTests.cxx +++ b/core/metacling/test/TClingTests.cxx @@ -437,6 +437,7 @@ TEST_F(TClingTests, UndeclaredIdentifierCrash) } // https://github.com/root-project/root/issues/15818 +#if !defined(_MSC_VER) || defined(R__ENABLE_BROKEN_WIN_TESTS) TEST_F(TClingTests, VeryLongExpression) { std::string expression = R"( @@ -451,3 +452,4 @@ using func0_ret_t = typename ROOT::TypeTraits::CallableTraits:: auto res = gInterpreter->Declare(expression.c_str()); EXPECT_TRUE(res); } +#endif \ No newline at end of file