From 78f11cab4e13addbf53072b23f17762e8752c5d1 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 10 Feb 2022 03:19:10 -0600 Subject: [PATCH] add a comment --- cmake/scripts/run_test.cmake | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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}") -- 2.39.5