diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-12-20 21:11:17 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-12-20 21:11:27 (GMT) |
commit | 7e8923957fdf18ce95e4947145950e382cf0585a (patch) | |
tree | d9b44ca3d4c872e4f4b7175ce0a2558fa13d0177 /tools/test/h5repack/CMakeVOLTests.cmake | |
parent | 416f68c6709c9dd47620e89ac6c3a911e77e8b17 (diff) | |
download | hdf5-7e8923957fdf18ce95e4947145950e382cf0585a.zip hdf5-7e8923957fdf18ce95e4947145950e382cf0585a.tar.gz hdf5-7e8923957fdf18ce95e4947145950e382cf0585a.tar.bz2 |
HDFFV-10656 Add CHECK_VOL support to CMake
Diffstat (limited to 'tools/test/h5repack/CMakeVOLTests.cmake')
-rw-r--r-- | tools/test/h5repack/CMakeVOLTests.cmake | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tools/test/h5repack/CMakeVOLTests.cmake b/tools/test/h5repack/CMakeVOLTests.cmake new file mode 100644 index 0000000..da19d59 --- /dev/null +++ b/tools/test/h5repack/CMakeVOLTests.cmake @@ -0,0 +1,55 @@ +# +# Copyright by The HDF Group. +# All rights reserved. +# +# This file is part of HDF5. The full HDF5 copyright notice, including +# terms governing use, modification, and redistribution, is contained in +# the COPYING file, which can be found at the root of the source code +# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. +# If you do not have access to either file, you may request a copy from +# help@hdfgroup.org. +# + +############################################################################## +############################################################################## +### T E S T I N G ### +############################################################################## +############################################################################## + + set (VOL_LIST + ) + +############################################################################## +############################################################################## +### T H E T E S T S M A C R O S ### +############################################################################## +############################################################################## + + macro (ADD_VOL_TEST volname resultcode) + add_test ( + NAME H5REPACK-VOL-${volname}-h5repacktest + COMMAND "${CMAKE_COMMAND}" + -D "TEST_PROGRAM=$<TARGET_FILE:h5repacktest>" + -D "TEST_ARGS:STRING=" + -D "TEST_VFD:STRING=${volname}" + -D "TEST_EXPECT=${resultcode}" + -D "TEST_OUTPUT=h5repacktest" + -D "TEST_FOLDER=${PROJECT_BINARY_DIR}" + -P "${HDF_RESOURCES_DIR}/volTest.cmake" + ) + if (NOT "${last_test}" STREQUAL "") + set_tests_properties (H5REPACK-VOL-${volname}-h5repacktest PROPERTIES DEPENDS ${last_test}) + endif () + set (last_test "H5REPACK-VOL-${volname}-h5repacktest") + endmacro () + +############################################################################## +############################################################################## +### T H E T E S T S ### +############################################################################## +############################################################################## + + # Run test with different VOL +# foreach (vol ${VOL_LIST}) +# ADD_VOL_TEST (${vol} 0) +# endforeach () |