From: Matthias Maier Date: Sun, 29 Sep 2013 18:03:04 +0000 (+0000) Subject: Bugfix: Read in CTestCustom.cmake if available X-Git-Tag: v8.1.0~570^2~158 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=925e0c1bb0324d14ee5174dd9231308bd8c340e4;p=dealii.git Bugfix: Read in CTestCustom.cmake if available git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31012 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/run_testsuite.cmake b/tests/run_testsuite.cmake index ff883a38e1..2162925009 100644 --- a/tests/run_testsuite.cmake +++ b/tests/run_testsuite.cmake @@ -134,6 +134,12 @@ ENDIF() MESSAGE("-- CTEST_SOURCE_DIRECTORY: ${CTEST_SOURCE_DIRECTORY}") +# +# Read in custom config files: +# + +CTEST_READ_CUSTOM_FILES(${CTEST_SOURCE_DIRECTORY}) + # # CTEST_BINARY_DIRECTORY: # @@ -155,6 +161,12 @@ Please either call ctest from within a designated build directory, or set CTEST_ ENDIF() ENDIF() +# +# Read in custom config files: +# + +CTEST_READ_CUSTOM_FILES(${CTEST_BINARY_DIRECTORY}) + # Make sure that for a build test the directory is empty: FILE(GLOB _test ${CTEST_BINARY_DIRECTORY}/*) IF( "${TRACK}" STREQUAL "Build Tests"