From 6fa1f9bd44e095d0d35b21ac854e5590264e04a0 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Mon, 4 Aug 2025 17:49:54 +0200 Subject: [PATCH] Remove a special case for RNTuple. Now that RNT is not experimental, TestSupport doesn't need to mask its warning messages. --- core/testsupport/src/TestSupport.cxx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/testsupport/src/TestSupport.cxx b/core/testsupport/src/TestSupport.cxx index ac81c064bb19a..7990ea3bad608 100644 --- a/core/testsupport/src/TestSupport.cxx +++ b/core/testsupport/src/TestSupport.cxx @@ -58,12 +58,6 @@ static struct ForbidDiagnostics { return; } - // FIXME: RNTuple warns that it's in beta stage. - if (level == kWarning && strstr(msg, "Merging RNTuples is experimental") != nullptr) { - std::cerr << "Warning in " << location << " " << msg << std::endl; - return; - } - // FIXME: DOAS backend is exprimental. if (level == kWarning && strstr(msg, "The DAOS backend is experimental and still under development") != nullptr) {