2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### T E S T I N G ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
|
2015-01-21 03:44:28 +08:00
|
|
|
# make test dir
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST")
|
2015-02-24 00:54:39 +08:00
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST/testfiles")
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST/testfiles/plist_files")
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST-shared")
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST-shared/testfiles")
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST-shared/testfiles/plist_files")
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
|
|
|
|
2015-01-21 03:44:28 +08:00
|
|
|
if (HDF5_TEST_VFD)
|
|
|
|
set (VFD_LIST
|
|
|
|
sec2
|
|
|
|
stdio
|
|
|
|
core
|
2015-09-29 01:47:19 +08:00
|
|
|
core_paged
|
2015-01-21 03:44:28 +08:00
|
|
|
split
|
|
|
|
multi
|
|
|
|
family
|
|
|
|
)
|
|
|
|
if (DIRECT_VFD)
|
|
|
|
set (VFD_LIST ${VFD_LIST} direct)
|
|
|
|
endif (DIRECT_VFD)
|
|
|
|
foreach (vfdtest ${VFD_LIST})
|
|
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/${vfdtest}")
|
2015-08-05 23:56:58 +08:00
|
|
|
#if (BUILD_SHARED_LIBS)
|
|
|
|
# file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/${vfdtest}-shared")
|
|
|
|
#endif (BUILD_SHARED_LIBS)
|
2015-01-21 03:44:28 +08:00
|
|
|
endforeach (vfdtest ${VFD_LIST})
|
|
|
|
endif (HDF5_TEST_VFD)
|
|
|
|
|
2013-08-20 05:49:44 +08:00
|
|
|
# --------------------------------------------------------------------
|
2015-01-21 03:44:28 +08:00
|
|
|
# Copy all the HDF5 files from the source directory into the test directory
|
2013-08-20 05:49:44 +08:00
|
|
|
# --------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (HDF5_TEST_FILES
|
2013-08-20 05:49:44 +08:00
|
|
|
tnullspace.h5
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (h5_tfile ${HDF5_TEST_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST/${h5_tfile}")
|
2014-03-12 05:14:57 +08:00
|
|
|
add_custom_command (
|
2013-08-20 05:49:44 +08:00
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TOOLS_SRC_DIR}/testfiles/${h5_tfile} ${dest}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST-shared/${h5_tfile}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TOOLS_SRC_DIR}/testfiles/${h5_tfile} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (h5_tfile ${HDF5_TEST_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
if (HDF5_TEST_VFD)
|
|
|
|
foreach (vfdtest ${VFD_LIST})
|
|
|
|
foreach (h5_tfile ${HDF5_TEST_FILES})
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/${vfdtest}/${h5_tfile}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TOOLS_SRC_DIR}/testfiles/${h5_tfile} ${dest}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/${vfdtest}-shared/${h5_tfile}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TOOLS_SRC_DIR}/testfiles/${h5_tfile} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-01-21 03:44:28 +08:00
|
|
|
endforeach (h5_tfile ${HDF5_TEST_FILES})
|
|
|
|
endforeach (vfdtest ${VFD_LIST})
|
|
|
|
endif (HDF5_TEST_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Copy all the HDF5 files from the test directory into the source directory
|
|
|
|
# --------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (HDF5_REFERENCE_FILES
|
2013-08-20 05:49:44 +08:00
|
|
|
err_compat_1
|
|
|
|
err_compat_2
|
|
|
|
error_test_1
|
|
|
|
error_test_2
|
|
|
|
links_env.out
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (ref_file ${HDF5_REFERENCE_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST/${ref_file}")
|
2014-03-12 05:14:57 +08:00
|
|
|
add_custom_command (
|
2013-08-20 05:49:44 +08:00
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
2014-01-27 22:26:21 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/${ref_file} ${dest}
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST-shared/${ref_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/${ref_file} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (ref_file ${HDF5_REFERENCE_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
if (HDF5_TEST_VFD)
|
|
|
|
foreach (vfdtest ${VFD_LIST})
|
|
|
|
foreach (ref_file ${HDF5_REFERENCE_FILES})
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/${vfdtest}/${ref_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/${ref_file} ${dest}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${PROJECT_BINARY_DIR}/${vfdtest}-shared/${ref_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/${ref_file} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-01-21 03:44:28 +08:00
|
|
|
endforeach (ref_file ${HDF5_REFERENCE_FILES})
|
|
|
|
endforeach (vfdtest ${VFD_LIST})
|
|
|
|
endif (HDF5_TEST_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# Copy test files from test/testfiles/plist_files dir to test dir
|
|
|
|
# --------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (HDF5_REFERENCE_PLIST_FILES
|
2015-09-17 05:38:16 +08:00
|
|
|
acpl_32be
|
|
|
|
acpl_32le
|
|
|
|
acpl_64be
|
|
|
|
acpl_64le
|
|
|
|
dapl_32be
|
|
|
|
dapl_32le
|
|
|
|
dapl_64be
|
|
|
|
dapl_64le
|
|
|
|
dcpl_32be
|
|
|
|
dcpl_32le
|
|
|
|
dcpl_64be
|
|
|
|
dcpl_64le
|
|
|
|
dxpl_32be
|
|
|
|
dxpl_32le
|
|
|
|
dxpl_64be
|
|
|
|
dxpl_64le
|
|
|
|
fapl_32be
|
|
|
|
fapl_32le
|
|
|
|
fapl_64be
|
|
|
|
fapl_64le
|
|
|
|
fcpl_32be
|
|
|
|
fcpl_32le
|
|
|
|
fcpl_64be
|
|
|
|
fcpl_64le
|
|
|
|
gcpl_32be
|
|
|
|
gcpl_32le
|
|
|
|
gcpl_64be
|
|
|
|
gcpl_64le
|
|
|
|
lapl_32be
|
|
|
|
lapl_32le
|
|
|
|
lapl_64be
|
|
|
|
lapl_64le
|
|
|
|
lcpl_32be
|
|
|
|
lcpl_32le
|
|
|
|
lcpl_64be
|
|
|
|
lcpl_64le
|
|
|
|
ocpl_32be
|
|
|
|
ocpl_32le
|
|
|
|
ocpl_64be
|
|
|
|
ocpl_64le
|
|
|
|
ocpypl_32be
|
|
|
|
ocpypl_32le
|
|
|
|
ocpypl_64be
|
|
|
|
ocpypl_64le
|
|
|
|
strcpl_32be
|
|
|
|
strcpl_32le
|
|
|
|
strcpl_64be
|
|
|
|
strcpl_64le
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (plistfile ${HDF5_REFERENCE_PLIST_FILES})
|
2015-09-17 05:38:16 +08:00
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST/testfiles/plist_files")
|
2014-03-12 05:14:57 +08:00
|
|
|
add_custom_command (
|
2013-08-20 05:49:44 +08:00
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-09-17 05:38:16 +08:00
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/plist_files/${plistfile} ${dest}/${plistfile}
|
|
|
|
)
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/plist_files/def_${plistfile} ${dest}/def_${plistfile}
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2015-09-17 05:38:16 +08:00
|
|
|
set (dest "${PROJECT_BINARY_DIR}/H5TEST-shared/testfiles/plist_files")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/plist_files/${plistfile} ${dest}/${plistfile}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-09-17 05:38:16 +08:00
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/testfiles/plist_files/def_${plistfile} ${dest}/def_${plistfile}
|
2015-08-05 23:56:58 +08:00
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (plistfile ${HDF5_REFERENCE_PLIST_FILES})
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
#-- Copy all the HDF5 files from the test directory into the source directory
|
|
|
|
# --------------------------------------------------------------------
|
2014-03-12 05:14:57 +08:00
|
|
|
set (HDF5_REFERENCE_TEST_FILES
|
2015-01-21 03:44:28 +08:00
|
|
|
bad_compound.h5
|
2013-08-20 05:49:44 +08:00
|
|
|
be_data.h5
|
|
|
|
be_extlink1.h5
|
|
|
|
be_extlink2.h5
|
|
|
|
corrupt_stab_msg.h5
|
|
|
|
deflate.h5
|
|
|
|
family_v16_00000.h5
|
|
|
|
family_v16_00001.h5
|
|
|
|
family_v16_00002.h5
|
|
|
|
family_v16_00003.h5
|
|
|
|
filespace_1_6.h5
|
|
|
|
filespace_1_8.h5
|
|
|
|
file_image_core_test.h5
|
|
|
|
fill_old.h5
|
|
|
|
filter_error.h5
|
|
|
|
group_old.h5
|
|
|
|
le_data.h5
|
|
|
|
le_extlink1.h5
|
|
|
|
le_extlink2.h5
|
|
|
|
mergemsg.h5
|
|
|
|
multi_file_v16-r.h5
|
|
|
|
multi_file_v16-s.h5
|
|
|
|
noencoder.h5
|
|
|
|
specmetaread.h5
|
|
|
|
tarrold.h5
|
|
|
|
tbad_msg_count.h5
|
|
|
|
tbogus.h5
|
|
|
|
test_filters_be.h5
|
|
|
|
test_filters_le.h5
|
|
|
|
th5s.h5
|
|
|
|
tlayouto.h5
|
|
|
|
tmtimen.h5
|
|
|
|
tmtimeo.h5
|
|
|
|
tsizeslheap.h5
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (h5_file ${HDF5_REFERENCE_TEST_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
set (dest "${HDF5_TEST_BINARY_DIR}/H5TEST/${h5_file}")
|
2014-03-12 05:14:57 +08:00
|
|
|
add_custom_command (
|
2013-08-20 05:49:44 +08:00
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/${h5_file} ${dest}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${HDF5_TEST_BINARY_DIR}/H5TEST-shared/${h5_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIBSH_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/${h5_file} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (h5_file ${HDF5_REFERENCE_TEST_FILES})
|
2015-01-21 03:44:28 +08:00
|
|
|
if (HDF5_TEST_VFD)
|
|
|
|
foreach (vfdtest ${VFD_LIST})
|
|
|
|
foreach (h5_file ${HDF5_REFERENCE_TEST_FILES})
|
|
|
|
set (dest "${HDF5_TEST_BINARY_DIR}/${vfdtest}/${h5_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/${h5_file} ${dest}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set (dest "${HDF5_TEST_BINARY_DIR}/${vfdtest}-shared/${h5_file}")
|
|
|
|
add_custom_command (
|
|
|
|
TARGET ${HDF5_TEST_LIB_TARGET}
|
|
|
|
POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
ARGS -E copy_if_different ${HDF5_TEST_SOURCE_DIR}/${h5_file} ${dest}
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-01-21 03:44:28 +08:00
|
|
|
endforeach (h5_file ${HDF5_REFERENCE_TEST_FILES})
|
|
|
|
endforeach (vfdtest ${VFD_LIST})
|
|
|
|
endif (HDF5_TEST_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
# Remove any output file left over from previous test run
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-testhdf5-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
coord.h5
|
2013-11-02 05:15:37 +08:00
|
|
|
dtypes10.h5
|
2013-08-20 05:49:44 +08:00
|
|
|
sys_file1
|
|
|
|
tattr.h5
|
|
|
|
tfile1.h5
|
|
|
|
tfile2.h5
|
|
|
|
tfile3.h5
|
|
|
|
tfile4.h5
|
|
|
|
tfile5.h5
|
|
|
|
tfile6.h5
|
2013-11-02 05:15:37 +08:00
|
|
|
tfile7.h5
|
2013-08-20 05:49:44 +08:00
|
|
|
th5o_file
|
|
|
|
th5s1.h5
|
|
|
|
tselect.h5
|
|
|
|
tsohm.h5
|
|
|
|
tsohm_dst.h5
|
|
|
|
tsohm_src.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
if (HDF5_ENABLE_USING_MEMCHECKER)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-testhdf5-base COMMAND $<TARGET_FILE:testhdf5> -x heap -x file -x select)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-testhdf5-base PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "HDF5_ALARM_SECONDS=3600;srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-testhdf5-heap COMMAND $<TARGET_FILE:testhdf5> -o heap)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-testhdf5-heap PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "HDF5_ALARM_SECONDS=3600;srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-testhdf5-file COMMAND $<TARGET_FILE:testhdf5> -o file)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-testhdf5-file PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "HDF5_ALARM_SECONDS=3600;srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-testhdf5-select COMMAND $<TARGET_FILE:testhdf5> -o select)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-testhdf5-select PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "HDF5_ALARM_SECONDS=3600;srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
else (HDF5_ENABLE_USING_MEMCHECKER)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-testhdf5 COMMAND $<TARGET_FILE:testhdf5>)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-testhdf5 PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-testhdf5-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
coord.h5
|
|
|
|
dtypes10.h5
|
|
|
|
sys_file1
|
|
|
|
tattr.h5
|
|
|
|
tfile1.h5
|
|
|
|
tfile2.h5
|
|
|
|
tfile3.h5
|
|
|
|
tfile4.h5
|
|
|
|
tfile5.h5
|
|
|
|
tfile6.h5
|
|
|
|
tfile7.h5
|
|
|
|
th5o_file
|
|
|
|
th5s1.h5
|
|
|
|
tselect.h5
|
|
|
|
tsohm.h5
|
|
|
|
tsohm_dst.h5
|
|
|
|
tsohm_src.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-testhdf5 COMMAND $<TARGET_FILE:testhdf5-shared>)
|
|
|
|
set_tests_properties (H5TEST-shared-testhdf5 PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-testhdf5-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (HDF5_ENABLE_USING_MEMCHECKER)
|
2015-06-10 02:48:03 +08:00
|
|
|
|
2013-08-20 05:49:44 +08:00
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### T H E T E S T S M A C R O S ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Remove any output file left over from previous test run
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
dt_arith1.h5
|
|
|
|
dt_arith2.h5
|
|
|
|
dtransform.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
dtypes3.h5
|
2013-08-20 05:49:44 +08:00
|
|
|
dtypes4.h5
|
|
|
|
dtypes5.h5
|
|
|
|
efc0.h5
|
|
|
|
efc1.h5
|
|
|
|
efc2.h5
|
|
|
|
efc3.h5
|
|
|
|
efc4.h5
|
|
|
|
efc5.h5
|
|
|
|
extlinks16A00000.h5
|
|
|
|
extlinks16A00001.h5
|
|
|
|
extlinks16A00002.h5
|
|
|
|
extlinks16B-b.h5
|
|
|
|
extlinks16B-g.h5
|
|
|
|
extlinks16B-l.h5
|
|
|
|
extlinks16B-r.h5
|
|
|
|
extlinks16B-s.h5
|
|
|
|
extlinks19B00000.h5
|
|
|
|
extlinks19B00001.h5
|
|
|
|
extlinks19B00002.h5
|
|
|
|
extlinks19B00003.h5
|
|
|
|
extlinks19B00004.h5
|
|
|
|
extlinks19B00005.h5
|
|
|
|
extlinks19B00006.h5
|
|
|
|
extlinks19B00007.h5
|
|
|
|
extlinks19B00008.h5
|
|
|
|
extlinks19B00009.h5
|
|
|
|
extlinks19B00010.h5
|
|
|
|
extlinks19B00011.h5
|
|
|
|
extlinks19B00012.h5
|
|
|
|
extlinks19B00013.h5
|
|
|
|
extlinks19B00014.h5
|
|
|
|
extlinks19B00015.h5
|
|
|
|
extlinks19B00016.h5
|
|
|
|
extlinks19B00017.h5
|
|
|
|
extlinks19B00018.h5
|
|
|
|
extlinks19B00019.h5
|
|
|
|
extlinks19B00020.h5
|
|
|
|
extlinks19B00021.h5
|
|
|
|
extlinks19B00022.h5
|
|
|
|
extlinks19B00023.h5
|
|
|
|
extlinks19B00024.h5
|
|
|
|
extlinks19B00025.h5
|
|
|
|
extlinks19B00026.h5
|
|
|
|
extlinks19B00027.h5
|
|
|
|
extlinks19B00028.h5
|
|
|
|
fheap.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
log_vfd_out.log
|
2013-08-20 05:49:44 +08:00
|
|
|
new_multi_file_v16-r.h5
|
|
|
|
new_multi_file_v16-s.h5
|
|
|
|
objcopy_ext.dat
|
|
|
|
testmeta.h5
|
|
|
|
tstint1.h5
|
|
|
|
tstint2.h5
|
|
|
|
unregister_filter_1.h5
|
|
|
|
unregister_filter_2.h5
|
2015-02-24 00:20:53 +08:00
|
|
|
vds_1.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (test ${H5_TESTS})
|
2015-06-10 02:52:43 +08:00
|
|
|
if (${test} STREQUAL "big" AND CYGWIN)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-${test}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${test}"
|
|
|
|
)
|
|
|
|
else (${test} STREQUAL "big" AND CYGWIN)
|
|
|
|
add_test (NAME H5TEST-${test} COMMAND $<TARGET_FILE:${test}>)
|
|
|
|
endif (${test} STREQUAL "big" AND CYGWIN)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-${test} PROPERTIES
|
2015-06-10 02:48:03 +08:00
|
|
|
DEPENDS H5TEST-clear-objects
|
2015-01-21 03:44:28 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (test ${H5_TESTS})
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2014-04-03 21:56:51 +08:00
|
|
|
set_tests_properties (H5TEST-flush2 PROPERTIES DEPENDS H5TEST-flush1)
|
2014-06-25 22:15:13 +08:00
|
|
|
set_tests_properties (H5TEST-fheap PROPERTIES TIMEOUT 1800)
|
|
|
|
set_tests_properties (H5TEST-testmeta PROPERTIES TIMEOUT 1800)
|
|
|
|
set_tests_properties (H5TEST-big PROPERTIES TIMEOUT 1800)
|
2015-09-03 22:48:18 +08:00
|
|
|
set_tests_properties (H5TEST-objcopy PROPERTIES TIMEOUT 2400)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
# Remove any output file left over from previous test run
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
dt_arith1.h5
|
|
|
|
dt_arith2.h5
|
|
|
|
dtransform.h5
|
|
|
|
dtypes3.h5
|
|
|
|
dtypes4.h5
|
|
|
|
dtypes5.h5
|
|
|
|
efc0.h5
|
|
|
|
efc1.h5
|
|
|
|
efc2.h5
|
|
|
|
efc3.h5
|
|
|
|
efc4.h5
|
|
|
|
efc5.h5
|
|
|
|
extlinks16A00000.h5
|
|
|
|
extlinks16A00001.h5
|
|
|
|
extlinks16A00002.h5
|
|
|
|
extlinks16B-b.h5
|
|
|
|
extlinks16B-g.h5
|
|
|
|
extlinks16B-l.h5
|
|
|
|
extlinks16B-r.h5
|
|
|
|
extlinks16B-s.h5
|
|
|
|
extlinks19B00000.h5
|
|
|
|
extlinks19B00001.h5
|
|
|
|
extlinks19B00002.h5
|
|
|
|
extlinks19B00003.h5
|
|
|
|
extlinks19B00004.h5
|
|
|
|
extlinks19B00005.h5
|
|
|
|
extlinks19B00006.h5
|
|
|
|
extlinks19B00007.h5
|
|
|
|
extlinks19B00008.h5
|
|
|
|
extlinks19B00009.h5
|
|
|
|
extlinks19B00010.h5
|
|
|
|
extlinks19B00011.h5
|
|
|
|
extlinks19B00012.h5
|
|
|
|
extlinks19B00013.h5
|
|
|
|
extlinks19B00014.h5
|
|
|
|
extlinks19B00015.h5
|
|
|
|
extlinks19B00016.h5
|
|
|
|
extlinks19B00017.h5
|
|
|
|
extlinks19B00018.h5
|
|
|
|
extlinks19B00019.h5
|
|
|
|
extlinks19B00020.h5
|
|
|
|
extlinks19B00021.h5
|
|
|
|
extlinks19B00022.h5
|
|
|
|
extlinks19B00023.h5
|
|
|
|
extlinks19B00024.h5
|
|
|
|
extlinks19B00025.h5
|
|
|
|
extlinks19B00026.h5
|
|
|
|
extlinks19B00027.h5
|
|
|
|
extlinks19B00028.h5
|
|
|
|
fheap.h5
|
|
|
|
log_vfd_out.log
|
|
|
|
new_multi_file_v16-r.h5
|
|
|
|
new_multi_file_v16-s.h5
|
|
|
|
objcopy_ext.dat
|
|
|
|
testmeta.h5
|
|
|
|
tstint1.h5
|
|
|
|
tstint2.h5
|
|
|
|
unregister_filter_1.h5
|
|
|
|
unregister_filter_2.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
|
|
|
|
foreach (test ${H5_TESTS})
|
|
|
|
if (${test} STREQUAL "big" AND CYGWIN)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-${test}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${test}-shared"
|
|
|
|
)
|
|
|
|
else (${test} STREQUAL "big" AND CYGWIN)
|
|
|
|
add_test (NAME H5TEST-shared-${test} COMMAND $<TARGET_FILE:${test}-shared>)
|
|
|
|
endif (${test} STREQUAL "big" AND CYGWIN)
|
|
|
|
set_tests_properties (H5TEST-shared-${test} PROPERTIES
|
2015-08-11 01:34:11 +08:00
|
|
|
DEPENDS H5TEST-shared-clear-objects
|
2015-08-05 23:56:58 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
endforeach (test ${H5_TESTS})
|
|
|
|
|
|
|
|
set_tests_properties (H5TEST-shared-flush2 PROPERTIES DEPENDS H5TEST-shared-flush1)
|
|
|
|
set_tests_properties (H5TEST-shared-fheap PROPERTIES TIMEOUT 1800)
|
|
|
|
set_tests_properties (H5TEST-shared-testmeta PROPERTIES TIMEOUT 1800)
|
|
|
|
set_tests_properties (H5TEST-shared-big PROPERTIES TIMEOUT 1800)
|
2015-09-03 22:48:18 +08:00
|
|
|
set_tests_properties (H5TEST-shared-objcopy PROPERTIES TIMEOUT 2400)
|
2015-08-05 23:56:58 +08:00
|
|
|
endif (BUILD_SHARED_LIBS)
|
|
|
|
|
2013-08-20 05:49:44 +08:00
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### A D D I T I O N A L T E S T S ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
#-- Adding test for cache
|
2015-08-05 23:56:58 +08:00
|
|
|
if (NOT CYGWIN)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-clear-cache-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
cache_test.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-cache COMMAND $<TARGET_FILE:cache>)
|
|
|
|
set_tests_properties (H5TEST-cache PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-cache-objects
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST;HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-08-05 23:56:58 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2015-09-01 04:08:56 +08:00
|
|
|
set_tests_properties (H5TEST-cache PROPERTIES TIMEOUT 2400)
|
2015-08-05 23:56:58 +08:00
|
|
|
endif (NOT CYGWIN)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for cache_api
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-cache_api-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
cache_api_test.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-cache_api COMMAND $<TARGET_FILE:cache_api>)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-cache_api PROPERTIES
|
2015-06-10 02:48:03 +08:00
|
|
|
DEPENDS H5TEST-clear-cache_api-objects
|
2015-01-21 03:44:28 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for cache_tagging
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-cache_tagging-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
tagging_test.h5
|
|
|
|
tagging_ext_test.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-cache_tagging COMMAND $<TARGET_FILE:cache_tagging>)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-cache_tagging PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-cache_tagging-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for ttsafe
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-ttsafe-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
ttsafe_error.h5
|
|
|
|
ttsafe_dcreate.h5
|
|
|
|
ttsafe_cancel.h5
|
|
|
|
ttsafe_acreate.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-ttsafe COMMAND $<TARGET_FILE:ttsafe>)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-ttsafe PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-ttsafe-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for err_compat
|
2014-03-12 05:14:57 +08:00
|
|
|
if (HDF5_ENABLE_DEPRECATED_SYMBOLS)
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-err_compat-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
err_compat.txt
|
|
|
|
err_compat.txt.err
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-err_compat COMMAND "${CMAKE_COMMAND}"
|
2013-08-20 05:49:44 +08:00
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:err_compat>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_MASK_ERROR=true"
|
|
|
|
-D "TEST_OUTPUT=err_compat.txt"
|
|
|
|
-D "TEST_REFERENCE=err_compat_1"
|
2015-01-21 03:44:28 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST"
|
2014-05-15 03:50:28 +08:00
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-err_compat PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-err_compat-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (HDF5_ENABLE_DEPRECATED_SYMBOLS)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for error_test
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-error_test-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-06-10 02:48:03 +08:00
|
|
|
-E remove
|
2013-08-20 05:49:44 +08:00
|
|
|
error_test.txt
|
|
|
|
error_test.txt.err
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-error_test COMMAND "${CMAKE_COMMAND}"
|
2013-08-20 05:49:44 +08:00
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:error_test>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_MASK_ERROR=true"
|
|
|
|
-D "TEST_OUTPUT=error_test.txt"
|
|
|
|
-D "TEST_REFERENCE=error_test_1"
|
2015-01-21 03:44:28 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST"
|
2014-05-15 03:50:28 +08:00
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-06-10 02:48:03 +08:00
|
|
|
set_tests_properties (H5TEST-error_test PROPERTIES
|
2015-01-21 03:44:28 +08:00
|
|
|
DEPENDS H5TEST-clear-error_test-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST;HDF5_PLUGIN_PRELOAD=::"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for links_env
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2014-04-03 02:35:01 +08:00
|
|
|
NAME H5TEST-clear-links_env-objects
|
2013-08-20 05:49:44 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-E remove
|
|
|
|
links_env.txt
|
2015-06-10 02:48:03 +08:00
|
|
|
links_env.txt.err
|
2013-08-20 05:49:44 +08:00
|
|
|
extlinks_env0.h5
|
|
|
|
extlinks_env1.h5
|
|
|
|
tmp/extlinks_env1.h5
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-04-03 02:35:01 +08:00
|
|
|
add_test (NAME H5TEST-links_env COMMAND "${CMAKE_COMMAND}"
|
2013-08-20 05:49:44 +08:00
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:links_env>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_ENV_VAR:STRING=HDF5_EXT_PREFIX"
|
|
|
|
-D "TEST_ENV_VALUE:STRING=.:tmp"
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_OUTPUT=links_env.txt"
|
|
|
|
-D "TEST_REFERENCE=links_env.out"
|
2015-01-21 03:44:28 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST"
|
2014-05-15 03:50:28 +08:00
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (H5TEST-links_env PROPERTIES
|
|
|
|
DEPENDS H5TEST-clear-links_env-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
#-- Adding test for libinfo
|
2015-01-21 03:44:28 +08:00
|
|
|
add_test (
|
|
|
|
NAME H5TEST-testlibinfo
|
|
|
|
COMMAND ${CMAKE_COMMAND} -D "TEST_PROGRAM=$<TARGET_FILE:${HDF5_LIB_TARGET}>" -P "${GREP_RUNNER}"
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2015-08-05 23:56:58 +08:00
|
|
|
#-- Adding test for cache
|
|
|
|
if (NOT CYGWIN)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-cache-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
cache_test.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-cache COMMAND $<TARGET_FILE:cache-shared>)
|
|
|
|
set_tests_properties (H5TEST-shared-cache PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-cache-objects
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared;HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-08-05 23:56:58 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
2015-09-10 22:18:54 +08:00
|
|
|
set_tests_properties (H5TEST-shared-cache PROPERTIES TIMEOUT 2400)
|
2015-08-05 23:56:58 +08:00
|
|
|
endif (NOT CYGWIN)
|
|
|
|
|
|
|
|
#-- Adding test for cache_api
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-cache_api-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
cache_api_test.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-cache_api COMMAND $<TARGET_FILE:cache_api-shared>)
|
|
|
|
set_tests_properties (H5TEST-shared-cache_api PROPERTIES
|
2015-08-11 01:34:11 +08:00
|
|
|
DEPENDS H5TEST-shared-clear-cache_api-objects
|
2015-08-05 23:56:58 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
#-- Adding test for cache_tagging
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-cache_tagging-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
tagging_test.h5
|
|
|
|
tagging_ext_test.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-cache_tagging COMMAND $<TARGET_FILE:cache_tagging-shared>)
|
|
|
|
set_tests_properties (H5TEST-shared-cache_tagging PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-cache_tagging-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
#-- Adding test for ttsafe
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-ttsafe-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
ttsafe_error.h5
|
|
|
|
ttsafe_dcreate.h5
|
|
|
|
ttsafe_cancel.h5
|
|
|
|
ttsafe_acreate.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-ttsafe COMMAND $<TARGET_FILE:ttsafe-shared>)
|
|
|
|
set_tests_properties (H5TEST-shared-ttsafe PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-ttsafe-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
2015-01-21 03:44:28 +08:00
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
|
|
|
|
#-- Adding test for err_compat
|
|
|
|
if (HDF5_ENABLE_DEPRECATED_SYMBOLS)
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-err_compat-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
err_compat.txt
|
|
|
|
err_compat.txt.err
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-err_compat COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:err_compat-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_MASK_ERROR=true"
|
|
|
|
-D "TEST_OUTPUT=err_compat.txt"
|
|
|
|
-D "TEST_REFERENCE=err_compat_1"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST-shared"
|
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (H5TEST-shared-err_compat PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-err_compat-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
endif (HDF5_ENABLE_DEPRECATED_SYMBOLS)
|
|
|
|
|
|
|
|
#-- Adding test for error_test
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2015-08-05 23:56:58 +08:00
|
|
|
NAME H5TEST-shared-clear-error_test-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2015-08-11 01:34:11 +08:00
|
|
|
-E remove
|
2015-08-05 23:56:58 +08:00
|
|
|
error_test.txt
|
|
|
|
error_test.txt.err
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-error_test COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:error_test-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_MASK_ERROR=true"
|
|
|
|
-D "TEST_OUTPUT=error_test.txt"
|
|
|
|
-D "TEST_REFERENCE=error_test_1"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST-shared"
|
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
|
|
|
)
|
2015-08-11 01:34:11 +08:00
|
|
|
set_tests_properties (H5TEST-shared-error_test PROPERTIES
|
2015-08-05 23:56:58 +08:00
|
|
|
DEPENDS H5TEST-shared-clear-error_test-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared;HDF5_PLUGIN_PRELOAD=::"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
#-- Adding test for links_env
|
|
|
|
add_test (
|
|
|
|
NAME H5TEST-shared-clear-links_env-objects
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-E remove
|
|
|
|
links_env.txt
|
2015-08-11 01:34:11 +08:00
|
|
|
links_env.txt.err
|
2015-08-05 23:56:58 +08:00
|
|
|
extlinks_env0.h5
|
|
|
|
extlinks_env1.h5
|
|
|
|
tmp/extlinks_env1.h5
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
add_test (NAME H5TEST-shared-links_env COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:links_env-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_ENV_VAR:STRING=HDF5_EXT_PREFIX"
|
|
|
|
-D "TEST_ENV_VALUE:STRING=.:tmp"
|
|
|
|
-D "TEST_EXPECT=0"
|
|
|
|
-D "TEST_OUTPUT=links_env.txt"
|
|
|
|
-D "TEST_REFERENCE=links_env.out"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/H5TEST-shared"
|
|
|
|
-P "${HDF_RESOURCES_EXT_DIR}/runTest.cmake"
|
2015-01-21 03:44:28 +08:00
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
set_tests_properties (H5TEST-shared-links_env PROPERTIES
|
|
|
|
DEPENDS H5TEST-shared-clear-links_env-objects
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/H5TEST-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
|
|
|
)
|
|
|
|
|
|
|
|
#-- Adding test for libinfo
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2015-08-05 23:56:58 +08:00
|
|
|
NAME H5TEST-shared-testlibinfo
|
|
|
|
COMMAND ${CMAKE_COMMAND} -D "TEST_PROGRAM=$<TARGET_FILE:${HDF5_LIBSH_TARGET}>" -P "${GREP_RUNNER}"
|
|
|
|
WORKING_DIRECTORY
|
|
|
|
${HDF5_TEST_BINARY_DIR}/H5TEST-shared
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (BUILD_SHARED_LIBS)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
##############################################################################
|
|
|
|
### P L U G I N T E S T S
|
|
|
|
##############################################################################
|
|
|
|
if (WIN32)
|
|
|
|
set (CMAKE_SEP "\;")
|
|
|
|
else (WIN32)
|
|
|
|
set (CMAKE_SEP ":")
|
|
|
|
endif (WIN32)
|
|
|
|
|
|
|
|
add_test (NAME H5PLUGIN-plugin COMMAND $<TARGET_FILE:plugin>)
|
|
|
|
set_tests_properties (H5PLUGIN-plugin PROPERTIES
|
|
|
|
ENVIRONMENT "HDF5_PLUGIN_PATH=${CMAKE_BINARY_DIR}/testdir1${CMAKE_SEP}${CMAKE_BINARY_DIR}/testdir2;srcdir=${HDF5_TEST_BINARY_DIR}"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2013-08-20 05:49:44 +08:00
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### V F D T E S T S ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
if (HDF5_TEST_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
set (H5_VFD_TESTS
|
2013-08-20 05:49:44 +08:00
|
|
|
testhdf5
|
|
|
|
accum
|
|
|
|
lheap
|
|
|
|
ohdr
|
|
|
|
stab
|
|
|
|
gheap
|
2015-08-05 23:56:58 +08:00
|
|
|
# cache
|
2013-08-20 05:49:44 +08:00
|
|
|
cache_api
|
|
|
|
cache_tagging
|
|
|
|
pool
|
|
|
|
hyperslab
|
|
|
|
istore
|
|
|
|
bittests
|
|
|
|
dt_arith
|
|
|
|
dtypes
|
2014-01-29 06:20:41 +08:00
|
|
|
dsets
|
2013-08-20 05:49:44 +08:00
|
|
|
cmpd_dset
|
|
|
|
filter_fail
|
|
|
|
extend
|
|
|
|
external
|
|
|
|
efc
|
|
|
|
objcopy
|
|
|
|
links
|
|
|
|
unlink
|
2014-05-15 03:50:28 +08:00
|
|
|
# big
|
2013-08-20 05:49:44 +08:00
|
|
|
mtime
|
|
|
|
fillval
|
|
|
|
mount
|
|
|
|
flush1
|
|
|
|
flush2
|
|
|
|
app_ref
|
|
|
|
enum
|
|
|
|
set_extent
|
|
|
|
ttsafe
|
|
|
|
getname
|
|
|
|
vfd
|
|
|
|
ntypes
|
|
|
|
dangle
|
|
|
|
dtransform
|
|
|
|
reserved
|
|
|
|
cross_read
|
|
|
|
freespace
|
|
|
|
mf
|
|
|
|
farray
|
|
|
|
earray
|
|
|
|
btree2
|
|
|
|
#fheap
|
|
|
|
error_test
|
|
|
|
err_compat
|
|
|
|
tcheck_version
|
|
|
|
testmeta
|
|
|
|
links_env
|
|
|
|
unregister
|
2014-05-15 03:50:28 +08:00
|
|
|
)
|
|
|
|
if (NOT CYGWIN)
|
2015-08-05 23:56:58 +08:00
|
|
|
set (H5_VFD_TESTS ${H5_VFD_TESTS} big cache)
|
2014-05-15 03:50:28 +08:00
|
|
|
endif (NOT CYGWIN)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-02-24 00:54:39 +08:00
|
|
|
MACRO (CHECK_VFD_TEST vfdtest vfdname resultcode)
|
|
|
|
if (${vfdtest} STREQUAL "flush1" OR ${vfdtest} STREQUAL "flush2")
|
|
|
|
if (${vfdname} STREQUAL "multi" OR ${vfdname} STREQUAL "split")
|
|
|
|
if (NOT BUILD_SHARED_LIBS AND NOT CMAKE_BUILD_TYPE MATCHES Debug)
|
|
|
|
add_test (
|
2015-06-10 02:48:03 +08:00
|
|
|
NAME VFD-${vfdname}-${vfdtest}
|
2015-02-24 00:54:39 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
2015-08-05 23:56:58 +08:00
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}"
|
2015-02-24 00:54:39 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest} PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${test}-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}-shared"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest}-shared PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-02-24 00:54:39 +08:00
|
|
|
else (NOT BUILD_SHARED_LIBS AND NOT CMAKE_BUILD_TYPE MATCHES Debug)
|
|
|
|
add_test (
|
|
|
|
NAME VFD-${vfdname}-${vfdtest}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo "SKIP VFD-${vfdname}-${vfdtest}"
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${test}-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo "SKIP VFD-${vfdname}-${vfdtest}-shared"
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-02-24 00:54:39 +08:00
|
|
|
endif(NOT BUILD_SHARED_LIBS AND NOT CMAKE_BUILD_TYPE MATCHES Debug)
|
|
|
|
else (${vfdname} STREQUAL "multi" OR ${vfdname} STREQUAL "split")
|
|
|
|
add_test (
|
2015-06-10 02:48:03 +08:00
|
|
|
NAME VFD-${vfdname}-${vfdtest}
|
2015-02-24 00:54:39 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
2015-08-05 23:56:58 +08:00
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}"
|
2015-02-24 00:54:39 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest} PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${test}-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}-shared"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest}-shared PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-02-24 00:54:39 +08:00
|
|
|
endif (${vfdname} STREQUAL "multi" OR ${vfdname} STREQUAL "split")
|
|
|
|
else (${vfdtest} STREQUAL "flush1" OR ${vfdtest} STREQUAL "flush2")
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2015-06-10 02:48:03 +08:00
|
|
|
NAME VFD-${vfdname}-${vfdtest}
|
2015-02-24 00:54:39 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
2015-08-05 23:56:58 +08:00
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}"
|
2015-02-24 00:54:39 +08:00
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-02-24 00:54:39 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest} PROPERTIES
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname};HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${vfdtest}-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${vfdtest}-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-${vfdtest}-shared"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${vfdtest}-shared PROPERTIES
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}-shared;HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-08-05 23:56:58 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-02-24 00:54:39 +08:00
|
|
|
endif (${vfdtest} STREQUAL "flush1" OR ${vfdtest} STREQUAL "flush2")
|
|
|
|
ENDMACRO (CHECK_VFD_TEST vfdtest vfdname resultcode)
|
|
|
|
|
|
|
|
MACRO (ADD_VFD_TEST vfdname resultcode)
|
|
|
|
foreach (test ${H5_VFD_TESTS})
|
|
|
|
if (WIN32)
|
|
|
|
CHECK_VFD_TEST (${test} ${vfdname} ${resultcode})
|
|
|
|
else (WIN32)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${test}
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${test}>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-${test}"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
2015-02-24 00:54:39 +08:00
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${test} PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-${test}-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${test}-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-${test}-shared"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-${test}-shared PROPERTIES
|
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2015-02-24 00:54:39 +08:00
|
|
|
endif (WIN32)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (test ${H5_VFD_TESTS})
|
2015-01-21 22:31:46 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-flush2 PROPERTIES DEPENDS VFD-${vfdname}-flush1)
|
2014-06-12 03:23:00 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-flush1 PROPERTIES TIMEOUT 10)
|
2014-09-23 02:46:21 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-flush2 PROPERTIES TIMEOUT 10)
|
2015-10-02 21:59:03 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-istore PROPERTIES TIMEOUT 1800)
|
2015-09-29 22:55:35 +08:00
|
|
|
if (NOT CYGWIN)
|
|
|
|
set_tests_properties (VFD-${vfdname}-cache PROPERTIES TIMEOUT 1800)
|
|
|
|
endif (NOT CYGWIN)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set_tests_properties (VFD-${vfdname}-flush2-shared PROPERTIES DEPENDS VFD-${vfdname}-flush1-shared)
|
|
|
|
set_tests_properties (VFD-${vfdname}-flush1-shared PROPERTIES TIMEOUT 10)
|
|
|
|
set_tests_properties (VFD-${vfdname}-flush2-shared PROPERTIES TIMEOUT 10)
|
2015-10-02 21:59:03 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-istore-shared PROPERTIES TIMEOUT 1800)
|
2015-09-29 22:55:35 +08:00
|
|
|
if (NOT CYGWIN)
|
|
|
|
set_tests_properties (VFD-${vfdname}-cache-shared PROPERTIES TIMEOUT 1800)
|
|
|
|
endif (NOT CYGWIN)
|
2015-08-05 23:56:58 +08:00
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
if (HDF5_TEST_FHEAP_VFD)
|
2014-03-12 06:07:13 +08:00
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-fheap
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:fheap>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-fheap"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
2013-08-20 05:49:44 +08:00
|
|
|
)
|
2015-01-21 03:44:28 +08:00
|
|
|
set_tests_properties (VFD-${vfdname}-fheap PROPERTIES
|
|
|
|
TIMEOUT 1800
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname};HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-01-21 03:44:28 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}
|
|
|
|
)
|
2015-08-05 23:56:58 +08:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
add_test (
|
2015-08-11 01:34:11 +08:00
|
|
|
NAME VFD-${vfdname}-fheap-shared
|
2015-08-05 23:56:58 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:fheap-shared>"
|
|
|
|
-D "TEST_ARGS:STRING="
|
|
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
|
|
-D "TEST_OUTPUT=${vfdname}-fheap-shared"
|
|
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}/${vfdname}-shared"
|
|
|
|
-P "${HDF_RESOURCES_DIR}/vfdTest.cmake"
|
|
|
|
)
|
|
|
|
set_tests_properties (VFD-${vfdname}-fheap-shared PROPERTIES
|
|
|
|
TIMEOUT 1800
|
2015-09-01 04:08:56 +08:00
|
|
|
ENVIRONMENT "srcdir=${HDF5_TEST_BINARY_DIR}/${vfdname}-shared;HDF5TestExpress=${HDF_TEST_EXPRESS}"
|
2015-08-05 23:56:58 +08:00
|
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/${vfdname}-shared
|
|
|
|
)
|
|
|
|
endif (BUILD_SHARED_LIBS)
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (HDF5_TEST_FHEAP_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
ENDMACRO (ADD_VFD_TEST)
|
2015-06-10 02:48:03 +08:00
|
|
|
|
2013-08-20 05:49:44 +08:00
|
|
|
# Run test with different Virtual File Driver
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (vfd ${VFD_LIST})
|
2013-08-20 05:49:44 +08:00
|
|
|
ADD_VFD_TEST (${vfd} 0)
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (vfd ${VFD_LIST})
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
endif (HDF5_TEST_VFD)
|
2013-08-20 05:49:44 +08:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
### T H E G E N E R A T O R S ###
|
|
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
if (HDF5_BUILD_GENERATORS)
|
2013-08-20 05:49:44 +08:00
|
|
|
MACRO (ADD_H5_GENERATOR genfile)
|
2014-03-12 05:14:57 +08:00
|
|
|
add_executable (${genfile} ${HDF5_TEST_SOURCE_DIR}/${genfile}.c)
|
2015-04-02 05:02:43 +08:00
|
|
|
TARGET_NAMING (${genfile} STATIC)
|
|
|
|
TARGET_C_PROPERTIES (${genfile} STATIC " " " ")
|
2014-03-12 05:14:57 +08:00
|
|
|
target_link_libraries (${genfile} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET})
|
|
|
|
set_target_properties (${genfile} PROPERTIES FOLDER generator/test)
|
2013-08-20 05:49:44 +08:00
|
|
|
ENDMACRO (ADD_H5_GENERATOR genfile)
|
|
|
|
|
|
|
|
# generator executables
|
2014-03-12 05:14:57 +08:00
|
|
|
set (H5_GENERATORS
|
2013-08-20 05:49:44 +08:00
|
|
|
gen_bad_ohdr
|
|
|
|
gen_bogus
|
|
|
|
gen_cross
|
|
|
|
gen_deflate
|
|
|
|
gen_filters
|
|
|
|
gen_new_array
|
|
|
|
gen_new_fill
|
|
|
|
gen_new_group
|
|
|
|
gen_new_mtime
|
|
|
|
gen_new_super
|
|
|
|
gen_noencoder
|
|
|
|
gen_nullspace
|
|
|
|
gen_udlinks
|
|
|
|
space_overflow
|
|
|
|
gen_filespace
|
|
|
|
gen_specmetaread
|
|
|
|
gen_sizes_lheap
|
|
|
|
gen_file_image
|
|
|
|
gen_plist
|
|
|
|
)
|
|
|
|
|
2014-03-12 05:14:57 +08:00
|
|
|
foreach (gen ${H5_GENERATORS})
|
2013-08-20 05:49:44 +08:00
|
|
|
ADD_H5_GENERATOR (${gen})
|
2014-03-12 05:14:57 +08:00
|
|
|
endforeach (gen ${H5_GENERATORS})
|
2013-08-20 05:49:44 +08:00
|
|
|
|
2015-08-05 23:56:58 +08:00
|
|
|
endif (HDF5_BUILD_GENERATORS)
|