Consolidate VFD create list macro (#1132)

This commit is contained in:
Allen Byrne 2021-10-25 21:17:23 -05:00 committed by GitHub
parent b0bd984ed6
commit aee9e06aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 5 additions and 10 deletions

View File

@ -946,6 +946,9 @@ if (BUILD_TESTING)
if (HDF5_TEST_VFD)
option (HDF5_TEST_FHEAP_VFD "Execute tests with different VFDs" ON)
mark_as_advanced (HDF5_TEST_FHEAP_VFD)
# Initialize the list of VFDs to be used for testing and create a test folder for each VFD
H5_SET_VFD_LIST()
endif ()
option (HDF5_TEST_PASSTHROUGH_VOL "Execute tests with different passthrough VOL connectors" OFF)

View File

@ -16,8 +16,6 @@
##############################################################################
##############################################################################
H5_SET_VFD_LIST()
##############################################################################
##############################################################################
### T H E T E S T S M A C R O S ###

View File

@ -60,6 +60,7 @@ macro (H5_SET_LIB_OPTIONS libtarget libname libtype libpackage)
endif ()
endmacro ()
# Initialize the list of VFDs to be used for testing and create a test folder for each VFD
macro (H5_SET_VFD_LIST)
set (VFD_LIST
sec2

View File

@ -17,8 +17,7 @@
##############################################################################
# included from CMakeTests.cmake
H5_SET_VFD_LIST()
# create more test folders for each VFD
foreach (vfdtest ${VFD_LIST})
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/${vfdtest}/testfiles")
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/${vfdtest}/testfiles/plist_files")

View File

@ -21,8 +21,6 @@ set (H5P_VFD_TESTS
t_pflush2
)
H5_SET_VFD_LIST()
macro (ADD_VFD_TEST vfdname resultcode)
if (NOT HDF5_ENABLE_USING_MEMCHECKER)
foreach (h5_test ${H5P_VFD_TESTS})

View File

@ -16,8 +16,6 @@
##############################################################################
##############################################################################
H5_SET_VFD_LIST()
# --------------------------------------------------------------------
# Copy all the HDF5 files from the source directory into the test directory
# --------------------------------------------------------------------

View File

@ -16,8 +16,6 @@
##############################################################################
##############################################################################
H5_SET_VFD_LIST()
##############################################################################
##############################################################################
### T H E T E S T S M A C R O S ###