From: Matthias Maier Date: Tue, 11 Jul 2023 18:16:47 +0000 (-0500) Subject: Testsuite: exclude configure warnings from "failure" condition X-Git-Tag: relicensing~696^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15719%2Fhead;p=dealii.git Testsuite: exclude configure warnings from "failure" condition --- 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 "")