diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-02-26 15:50:00 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-02-26 15:50:06 (GMT) |
commit | 027b06267d31af595ff6438283c1dcd25a7c0673 (patch) | |
tree | 2963cba6fc32b476462b7f4a0013275cfc669182 | |
parent | 6fadd6dce7ba77d669b06a601db5c4c62985aab8 (diff) | |
download | hdf5-027b06267d31af595ff6438283c1dcd25a7c0673.zip hdf5-027b06267d31af595ff6438283c1dcd25a7c0673.tar.gz hdf5-027b06267d31af595ff6438283c1dcd25a7c0673.tar.bz2 |
Move MODEL check to before usage in CTestScript.cmake.
-rw-r--r-- | config/cmake/scripts/CTestScript.cmake | 8 | ||||
-rw-r--r-- | config/cmake/scripts/HDF5config.cmake | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/config/cmake/scripts/CTestScript.cmake b/config/cmake/scripts/CTestScript.cmake index 01335b8..e3659f6 100644 --- a/config/cmake/scripts/CTestScript.cmake +++ b/config/cmake/scripts/CTestScript.cmake @@ -253,6 +253,14 @@ endforeach () message (STATUS "Dashboard script configuration:\n${vars}\n") #----------------------------------------------------------------------------- + +################################################################### +######### Following is for submission to CDash ############ +################################################################### +if (NOT DEFINED MODEL) + set (MODEL "Experimental") +endif () + #----------------------------------------------------------------------------- ## NORMAL process ## -- LOCAL_UPDATE updates the source folder from svn diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index af3ed2b..c33833e 100644 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -189,15 +189,6 @@ endif () ################################################################### ################################################################### -######### Following is for submission to CDash ############ -################################################################### -if (NOT DEFINED MODEL) - set (MODEL "Experimental") -endif () - -################################################################### - -################################################################### ##### Following controls CDash submission ##### #set (LOCAL_SUBMIT "TRUE") ##### Following controls test process ##### |