From d1d5e716c4f4e98780aac9628224f62297add44f Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 11 Jul 2023 13:16:47 -0500 Subject: [PATCH] Testsuite: exclude configure warnings from "failure" condition --- tests/run_testsuite.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/run_testsuite.cmake b/tests/run_testsuite.cmake index 4413cc1c08..17ddc64ba3 100644 --- a/tests/run_testsuite.cmake +++ b/tests/run_testsuite.cmake @@ -625,7 +625,9 @@ if("${_status}" STREQUAL "neutral") set(_status "success") file(STRINGS "${_path}/Configure.xml" _warnings LIMIT_COUNT 1 REGEX "CMake Warning at") if(NOT "${_warnings}" STREQUAL "") - set(_status "failure") + # for the time being configure warnings are not a "failure" + # condition. This would otherwise create a lot of noise on the + # regression tester. string(APPEND _summary "\n# - configure warnings") endif() file(STRINGS "${_path}/Build.xml" _warnings LIMIT_COUNT 1 REGEX "") -- 2.39.5