Merge /u/wyldckat/foam-extend32/ branch master into master
[foam-extend-3.2.git] / testHarness / OSIG / Turbomachinery / CMakeFiles / TurbomachineryTestsuites_ercoftacCentrifugalPump.cmake
blob605dfa5f104cd25455b7256249ce34178179ac53
1 # /*---------------------------------------------------------------------------*\
2 #   =========                 |
3 #   \\      /  F ield         | foam-extend: Open Source CFD
4 #    \\    /   O peration     |
5 #     \\  /    A nd           | For copyright notice see file Copyright
6 #      \\/     M anipulation  |
7 # -------------------------------------------------------------------------------
8 # License
9 #     This file is part of foam-extend.
11 #     foam-extend is free software: you can redistribute it and/or modify it
12 #     under the terms of the GNU General Public License as published by the
13 #     Free Software Foundation, either version 3 of the License, or (at your
14 #     option) any later version.
16 #     foam-extend is distributed in the hope that it will be useful, but
17 #     WITHOUT ANY WARRANTY; without even the implied warranty of
18 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 #     General Public License for more details.
21 #     You should have received a copy of the GNU General Public License
22 #     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 # Description
25 #        CMake/CTest script for running the Turbomachinery OSIG testsuites
26 #        for the ERCOFTAC Centrifugal Pump
28 # Author
29 #        Martin Beaudoin, Hydro-Quebec, 2010. All rights reserved
31 # \*---------------------------------------------------------------------------*/
33 # Take care of tests specific variables
34 IF(NOT DEFINED testIdSuffix)
35     SET(testIdSuffix "_full")
36 ENDIF(NOT DEFINED testIdSuffix)
38 SET(testRunTimeDirectory "TurbomachineryTestSuites${testIdSuffix}/ercoftacCentrifugalPump")
40 # Use the current directory for running the test cases
41 SET (TEST_CASE_DIR $ENV{PWD}/${testRunTimeDirectory}
42     CACHE INTERNAL "ECP test case directory."
43     )
45 # Create the runTime test cases
46 MESSAGE("Removing the old test directory: ${TEST_CASE_DIR}")
47 file(REMOVE_RECURSE ${TEST_CASE_DIR})
48 MESSAGE("Creation of the new test directory: ${TEST_CASE_DIR}")
49 file(COPY ${TURBOMACHINERY_OSIG_ROOT}/ercoftacCentrifugalPump DESTINATION ${TEST_CASE_DIR}/..)
51 # Iterate over each case:
52 # We are looking for a tutorial with an Allrun case.
53 # If this file is present, we add this case to the list of cases to run.
56 # Subdirectory for the test cases
57 SET(TESTCASES_SUBDIR "cases")
59 # First, add a global cleanup of the cases
60 SET(testId "ECP_Allclean_cases${testIdSuffix}")
61 ADD_TEST(${testId} bash -c "cd ${TEST_CASE_DIR}/${TESTCASES_SUBDIR}; ./Allclean")
63 # Next, recurse through the case root directory,
64 # find all the Allrun files, and execute them
65 FILE(GLOB_RECURSE listofCasesWithAllrun ${TEST_CASE_DIR}/Allrun)
66 LIST(SORT listofCasesWithAllrun)
68 FOREACH(caseWithAllrun ${listofCasesWithAllrun})
69   #Grab the name of the directory containing the file Allrun
70   get_filename_component(thisCasePath ${caseWithAllrun} PATH)
72   # We need to skip the global Allrun file
73   IF(NOT ${thisCasePath} STREQUAL ${TEST_CASE_DIR}/${TESTCASES_SUBDIR})
74     MESSAGE("Found Allrun file in directory: ${thisCasePath}")
76     # Grab the parent name of the case directory
77     string(REPLACE ${TEST_CASE_DIR}/ "" caseParentPath ${caseWithAllrun})
79     # Construct the testId
80     string(REPLACE "/" "_" testId ${caseParentPath})
81     SET(testId ECP_${testId}${testIdSuffix})
83     # Add the test to the test harness
84     MESSAGE("Adding test: ${testId}")
85     ADD_TEST(${testId} bash -c "cd ${thisCasePath}; ./Allrun")
86     # Use this entry instead for testing
87     #ADD_TEST(${testId} bash -c "cd ${thisCasePath}; true")
89   ENDIF(NOT ${thisCasePath} STREQUAL ${TEST_CASE_DIR}/${TESTCASES_SUBDIR})
90 ENDFOREACH(caseWithAllrun)
92 # Modify the cases Allrun file for additional shell functions
93 MESSAGE("${testRunTimeDirectory}: Modifying the Allrun files for additional shell functions in directory: ${TEST_CASE_DIR}/${TESTCASES_SUBDIR}")
94 EXECUTE_PROCESS(
95     COMMAND $ENV{FOAM_TEST_HARNESS_DIR}/scripts/prepareCasesForTestHarness.sh ${TEST_CASE_DIR}/${TESTCASES_SUBDIR} $ENV{FOAM_TEST_HARNESS_DIR}/scripts/AdditionalRunFunctions
96     WORKING_DIRECTORY .
97     )
99 # That's it.