From: Matthias Maier Date: Mon, 26 Mar 2018 13:03:42 +0000 (-0500) Subject: CMake: Do not require a special name for TRACK=continuous X-Git-Tag: v9.0.0-rc1~279^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0a84ef079ebecb46e4481065617b1109fb82fae;p=dealii.git CMake: Do not require a special name for TRACK=continuous --- diff --git a/tests/run_testsuite.cmake b/tests/run_testsuite.cmake index 94108b55d0..6d628af11b 100644 --- a/tests/run_testsuite.cmake +++ b/tests/run_testsuite.cmake @@ -62,9 +62,9 @@ # directory (without actually running the # testsuite) # -# "Regression Tests" - Reserved for the "official" regression tester +# "Regression Tests" - Reserved for "official" regression testers # -# "Continuous" - Reserved for the "official" regression tester +# "Continuous" - Reserved for "official" regression testers # # CONFIG_FILE # - A configuration file (see ../doc/users/config.sample) @@ -243,11 +243,10 @@ ENDIF() MESSAGE("-- CTEST_SITE: ${CTEST_SITE}") -IF( TRACK MATCHES "^(Regression Tests|Continuous)$" - AND NOT CTEST_SITE MATCHES "^(simserv04|tester)$" ) +IF(TRACK MATCHES "^Regression Tests$" AND NOT CTEST_SITE MATCHES "^tester$") MESSAGE(FATAL_ERROR " I'm sorry ${CTEST_SITE}, I'm afraid I can't do that. -The TRACK \"Regression Tests\" or \"Continuous\" is not for you. +The TRACK \"Regression Tests\" is not for you. " ) ENDIF()