summaryrefslogtreecommitdiffstats
path: root/config/cmake/fileCompareTest.cmake
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2023-09-26 03:16:43 (GMT)
committerGitHub <noreply@github.com>2023-09-26 03:16:43 (GMT)
commit55565382d2a6ae444ec5bc039f83b6b3bfb6730c (patch)
treef953dc573aa5354e28be862a8810cebcc6a0c3b6 /config/cmake/fileCompareTest.cmake
parent54188a2f320f95900c3612860438280aaddc7204 (diff)
downloadhdf5-55565382d2a6ae444ec5bc039f83b6b3bfb6730c.zip
hdf5-55565382d2a6ae444ec5bc039f83b6b3bfb6730c.tar.gz
hdf5-55565382d2a6ae444ec5bc039f83b6b3bfb6730c.tar.bz2
Create 11011 tarball (#3596)hdf5-1_10_11hdf5_1_10_11
* Use variable for ignore-eol usage. (#3592) * Add last_test depends properties * Just print status on CMake below 3.14 (#3595) * updated bin/release to fix CMake tar.gz and zip files for saip and zlib. Removed the use of -commons linking option on Darwin as COMMON and EQUIVALENCE are no long used. Release of HDF5 1.10.11. --------- Co-authored-by: Allen Byrne <50328838+byrnHDF@users.noreply.github.com>
Diffstat (limited to 'config/cmake/fileCompareTest.cmake')
-rw-r--r--config/cmake/fileCompareTest.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cmake/fileCompareTest.cmake b/config/cmake/fileCompareTest.cmake
index 4a8dc09..f4c46f6 100644
--- a/config/cmake/fileCompareTest.cmake
+++ b/config/cmake/fileCompareTest.cmake
@@ -59,7 +59,7 @@ if (TEST_STRINGS STREQUAL "YES")
endif ()
else ()
if (CMAKE_VERSION VERSION_LESS "3.14.0")
- message (FATAL_ERROR "CANNOT get file size, file command SIZE not supported")
+ message (STATUS "CANNOT get file size, file command SIZE not supported")
else ()
file (SIZE ${TEST_FOLDER}/${TEST_ONEFILE} TEST_ONE_SIZE)
file (SIZE ${TEST_FOLDER}/${TEST_TWOFILE} TEST_TWO_SIZE)
@@ -74,7 +74,7 @@ else ()
elseif (TEST_FUNCTION MATCHES "LTEQ")
if (TEST_ONE_SIZE LESS_EQUAL TEST_TWO_SIZE)
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15.0")
- message (VERBOSES "Passed: The size of ${TEST_FOLDER}/${TEST_ONEFILE} was less or equal ${TEST_FOLDER}/${TEST_TWOFILE}")
+ message (VERBOSE "Passed: The size of ${TEST_FOLDER}/${TEST_ONEFILE} was less or equal ${TEST_FOLDER}/${TEST_TWOFILE}")
endif ()
else ()
message (FATAL_ERROR "The size of ${TEST_FOLDER}/${TEST_ONEFILE} was NOT less or equal ${TEST_FOLDER}/${TEST_TWOFILE}")