From: Matthias Maier Date: Thu, 10 Feb 2022 09:19:10 +0000 (-0600) Subject: add a comment X-Git-Tag: v9.4.0-rc1~512^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78f11cab4e13addbf53072b23f17762e8752c5d1;p=dealii.git add a comment --- diff --git a/cmake/scripts/run_test.cmake b/cmake/scripts/run_test.cmake index 63a7f790aa..fcc78c32ba 100644 --- a/cmake/scripts/run_test.cmake +++ b/cmake/scripts/run_test.cmake @@ -60,8 +60,12 @@ EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} ) # -# Determine the last successful stage of the test: -# (Possible values are CONFIGURE, BUILD, RUN, DIFF, PASSED) +# Determine the stage a test reached: Possible values are +# CONFIGURE - the test started with a special configure stage and failed during configure +# BUILD - the test reached the build stage and a compilation error occured +# RUN - the test reached the run stage but the run terminated with an error +# DIFF - the test reached the diff stage but output differed +# PASSED - the test passed all stages # STRING(REGEX MATCH "${TEST}: CONFIGURE failed\\." _configure_regex "${_output}")