2018-12-21 05:11:17 +08:00
|
|
|
#
|
|
|
|
# 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
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2018-12-21 05:11:17 +08:00
|
|
|
# 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 ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
2021-10-28 20:49:28 +08:00
|
|
|
H5_CREATE_VFD_DIR()
|
2018-12-21 05:11:17 +08:00
|
|
|
|
2019-08-04 06:28:50 +08:00
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### T H E T E S T S M A C R O S ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
macro (ADD_VFD_TEST vfdname resultcode)
|
2024-03-06 01:07:16 +08:00
|
|
|
if (NOT HDF5_USING_ANALYSIS_TOOL)
|
2019-08-04 06:28:50 +08:00
|
|
|
add_test (
|
2018-12-21 05:11:17 +08:00
|
|
|
NAME CPP_VFD-${vfdname}-cpp_testhdf5
|
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
2019-07-15 22:44:14 +08:00
|
|
|
-D "TEST_EMULATOR=${CMAKE_CROSSCOMPILING_EMULATOR}"
|
2018-12-21 05:11:17 +08:00
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:cpp_testhdf5>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
2019-07-24 05:24:56 +08:00
|
|
|
-D "TEST_OUTPUT=${vfdname}-cpp_testhdf5.out"
|
2018-12-21 05:11:17 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
2019-08-04 06:28:50 +08:00
|
|
|
)
|
|
|
|
set_tests_properties (CPP_VFD-${vfdname}-cpp_testhdf5 PROPERTIES TIMEOUT ${CTEST_SHORT_TIMEOUT})
|
2023-11-22 21:51:30 +08:00
|
|
|
if ("CPP_VFD-${vfdname}-cpp_testhdf5" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
|
|
|
|
set_tests_properties (CPP_VFD-${vfdname}-cpp_testhdf5 PROPERTIES DISABLED true)
|
|
|
|
endif ()
|
2019-08-04 06:28:50 +08:00
|
|
|
endif ()
|
|
|
|
endmacro ()
|
2018-12-21 05:11:17 +08:00
|
|
|
|
2019-08-04 06:28:50 +08:00
|
|
|
# Run test with different Virtual File Driver
|
|
|
|
foreach (vfd ${VFD_LIST})
|
|
|
|
ADD_VFD_TEST (${vfd} 0)
|
|
|
|
endforeach ()
|