diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-29 19:43:35 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-29 19:43:35 (GMT) |
commit | 0b6f5e88cd9215ff9daafda865ebe6d4794a6012 (patch) | |
tree | 3dc3dd18ceb9ac4245845133edea9f5b695c0e84 /config/cmake/volTest.cmake | |
parent | ed4cbbcc9bbda6c81f19fb4e7c04e948b46ce6fc (diff) | |
download | hdf5-0b6f5e88cd9215ff9daafda865ebe6d4794a6012.zip hdf5-0b6f5e88cd9215ff9daafda865ebe6d4794a6012.tar.gz hdf5-0b6f5e88cd9215ff9daafda865ebe6d4794a6012.tar.bz2 |
Fix EXISTS test syntax
Diffstat (limited to 'config/cmake/volTest.cmake')
-rw-r--r-- | config/cmake/volTest.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/cmake/volTest.cmake b/config/cmake/volTest.cmake index 6554f00..1dcd2b1 100644 --- a/config/cmake/volTest.cmake +++ b/config/cmake/volTest.cmake @@ -23,11 +23,11 @@ if (NOT TEST_VOL) message (FATAL_ERROR "Require TEST_VOL to be defined") endif () -if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}) +if (EXISTS "${TEST_FOLDER}/${TEST_OUTPUT}") file (REMOVE ${TEST_FOLDER}/${TEST_OUTPUT}) endif () -if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}.err) +if (EXISTS "${TEST_FOLDER}/${TEST_OUTPUT}.err") file (REMOVE ${TEST_FOLDER}/${TEST_OUTPUT}.err) endif () @@ -54,7 +54,7 @@ execute_process ( message (STATUS "COMMAND Result: ${TEST_RESULT}") # if the .err file exists and ERRROR_APPEND is enabled -if (ERROR_APPEND AND EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}.err) +if (ERROR_APPEND AND EXISTS "${TEST_FOLDER}/${TEST_OUTPUT}.err") file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT}.out "${TEST_STREAM}") endif () @@ -62,7 +62,7 @@ endif () # if the return value is !=${TEST_EXPECT} bail out if (NOT TEST_RESULT EQUAL TEST_EXPECT) if (NOT TEST_NOERRDISPLAY) - if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}.out) + if (EXISTS "${TEST_FOLDER}/${TEST_OUTPUT}.out") file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.out TEST_STREAM) message (STATUS "Output USING ${TEST_VOL}:\n${TEST_STREAM}") endif () |