107 lines
No EOL
4.3 KiB
CMake
107 lines
No EOL
4.3 KiB
CMake
# /*---------------------------------------------------------------------------*\
|
|
# ========= |
|
|
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
# \\ / O peration |
|
|
# \\ / A nd | Copyright held by original author
|
|
# \\/ M anipulation |
|
|
# -------------------------------------------------------------------------------
|
|
# License
|
|
# This file is part of OpenFOAM.
|
|
#
|
|
# OpenFOAM is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by the
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
# Description
|
|
# CMake/CTest script for running the OpenFOAM tutorials
|
|
#
|
|
# Author
|
|
# Martin Beaudoin, Hydro-Quebec, 2010. All rights reserved
|
|
#
|
|
# \*---------------------------------------------------------------------------*/
|
|
|
|
# Take care of tests specific variables
|
|
IF(NOT DEFINED testIdSuffix)
|
|
SET(testIdSuffix "_full")
|
|
ENDIF(NOT DEFINED testIdSuffix)
|
|
|
|
IF(NOT DEFINED testRunTimeDirectory)
|
|
SET(testRunTimeDirectory "tutorialsTestSuites${testIdSuffix}")
|
|
ENDIF(NOT DEFINED testRunTimeDirectory)
|
|
|
|
# Use the current directory for running the test cases
|
|
SET (TEST_CASE_DIR $ENV{PWD}/${testRunTimeDirectory}
|
|
CACHE INTERNAL "OpenFOAM test case directory."
|
|
)
|
|
|
|
# Create the runTime directory for the test cases
|
|
MESSAGE("Removing the old test directory: ${TEST_CASE_DIR}")
|
|
file(REMOVE_RECURSE ${TEST_CASE_DIR})
|
|
MESSAGE("Creation of the new test directory: ${TEST_CASE_DIR}")
|
|
file(COPY $ENV{FOAM_TUTORIALS}/ DESTINATION ${TEST_CASE_DIR})
|
|
|
|
# Add a default Allrun file for the cases that don't have one.
|
|
# The test harness relies on the presence of an Allrun file for
|
|
# running the case
|
|
MESSAGE("${testRunTimeDirectory}: Checking for missing Allrun file in tutorials")
|
|
EXECUTE_PROCESS(
|
|
COMMAND $ENV{FOAM_TEST_HARNESS_DIR}/scripts/addMissingAllrunFileToTutorial.sh ${TEST_CASE_DIR} $ENV{FOAM_TEST_HARNESS_DIR}/scripts/Allrun.default
|
|
WORKING_DIRECTORY .
|
|
)
|
|
|
|
# Iterate over each tutorial case:
|
|
# We are looking for tutorial cases with an Allrun file.
|
|
# If this file is present, (and it should), we add this case to the list of cases to run.
|
|
#
|
|
|
|
#First, add a global cleanup of the cases
|
|
SET(testId "Allclean_cases${testIdSuffix}")
|
|
ADD_TEST(${testId} bash -c "cd ${TEST_CASE_DIR}; ./Allclean")
|
|
|
|
# Next, recurse through the test cases root directory,
|
|
# find all the Allrun files, and add them as a new CTest test case
|
|
FILE(GLOB_RECURSE listofCasesWithAllrun ${TEST_CASE_DIR}/Allrun)
|
|
LIST(SORT listofCasesWithAllrun)
|
|
|
|
FOREACH(caseWithAllrun ${listofCasesWithAllrun})
|
|
#Grab the name of the directory containing the file Allrun
|
|
get_filename_component(thisCasePath ${caseWithAllrun} PATH)
|
|
|
|
# We need to skip the global Allrun file
|
|
IF(NOT ${thisCasePath} STREQUAL ${TEST_CASE_DIR})
|
|
MESSAGE("Found Allrun file in directory: ${thisCasePath}")
|
|
|
|
# Grab the parent name of the case directory
|
|
string(REPLACE ${TEST_CASE_DIR}/ "" caseParentPath ${caseWithAllrun})
|
|
|
|
# Construct the testId
|
|
string(REPLACE "/" "_" testId ${caseParentPath})
|
|
SET(testId ${testId}${testIdSuffix})
|
|
|
|
# Add the test to the test harness
|
|
MESSAGE("Adding test: ${testId}")
|
|
ADD_TEST(${testId} bash -c "cd ${thisCasePath}; ./Allrun")
|
|
# Use this following entry instead for testing purpose
|
|
#ADD_TEST(${testId} bash -c "cd ${thisCasePath}; true")
|
|
|
|
ENDIF(NOT ${thisCasePath} STREQUAL ${TEST_CASE_DIR})
|
|
ENDFOREACH(caseWithAllrun)
|
|
|
|
# Modify the cases Allrun files to incorporate additional shell functions
|
|
MESSAGE("${testRunTimeDirectory}: Modifying the Allrun files for additional shell functions in directory: ${TEST_CASE_DIR}")
|
|
EXECUTE_PROCESS(
|
|
COMMAND $ENV{FOAM_TEST_HARNESS_DIR}/scripts/prepareCasesForTestHarness.sh ${TEST_CASE_DIR} $ENV{FOAM_TEST_HARNESS_DIR}/scripts/AdditionalRunFunctions
|
|
WORKING_DIRECTORY .
|
|
)
|
|
|
|
# That's it. |