mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
98 lines
3.6 KiB
CMake
98 lines
3.6 KiB
CMake
cmake_minimum_required (VERSION 2.8.6)
|
|
PROJECT (HDF5_HL_TEST)
|
|
# --------------------------------------------------------------------
|
|
# Notes: When creating unit test executables they should be prefixed
|
|
# with "hl_". This allows for easier filtering of the test suite when
|
|
# using ctest. An example would be
|
|
# ctest -R hl_
|
|
# which would only run the High Level based unit tests.
|
|
# --------------------------------------------------------------------
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Generate the H5srcdir_str.h file containing user settings needed by compilation
|
|
#-----------------------------------------------------------------------------
|
|
SET (srcdir ${CMAKE_CURRENT_SOURCE_DIR})
|
|
CONFIGURE_FILE (${HDF5_HL_TEST_SOURCE_DIR}/H5srcdir_str.h.in H5srcdir_str.h @ONLY)
|
|
|
|
INCLUDE_DIRECTORIES (${CMAKE_CURRENT_BINARY_DIR})
|
|
INCLUDE_DIRECTORIES (${HDF5_TEST_SRC_DIR})
|
|
|
|
# --------------------------------------------------------------------
|
|
# Macro used to add a unit test
|
|
# --------------------------------------------------------------------
|
|
MACRO (HL_ADD_TEST hl_name files)
|
|
ADD_EXECUTABLE (hl_${hl_name} ${hl_name}.c)
|
|
TARGET_NAMING (hl_${hl_name} ${LIB_TYPE})
|
|
TARGET_LINK_LIBRARIES (hl_${hl_name}
|
|
${HDF5_HL_LIB_TARGET}
|
|
${HDF5_LIB_TARGET}
|
|
${HDF5_TEST_LIB_TARGET}
|
|
)
|
|
SET_TARGET_PROPERTIES (hl_${hl_name} PROPERTIES FOLDER test/hl)
|
|
|
|
ADD_TEST (NAME hl_${hl_name} COMMAND $<TARGET_FILE:hl_${hl_name}>)
|
|
|
|
# --------------------------------------------------------------------
|
|
#-- Copy the necessary files.
|
|
# --------------------------------------------------------------------
|
|
FOREACH (h5_file ${files})
|
|
SET (dest "${HDF5_HL_TEST_BINARY_DIR}/${h5_file}")
|
|
#MESSAGE (STATUS " Copying HL Test File ${h5_file} to ${dest}")
|
|
ADD_CUSTOM_COMMAND (
|
|
TARGET hl_${hl_name}
|
|
PRE_BUILD
|
|
COMMAND ${CMAKE_COMMAND}
|
|
ARGS -E copy_if_different ${HDF5_HL_TEST_SOURCE_DIR}/${h5_file} ${dest}
|
|
)
|
|
|
|
ENDFOREACH (h5_file ${HL_REFERENCE_TEST_FILES})
|
|
ENDMACRO (HL_ADD_TEST)
|
|
|
|
# Remove any output file left over from previous test run
|
|
ADD_TEST (
|
|
NAME hl_test-clear-objects
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-E remove
|
|
combine_tables1.h5
|
|
combine_tables2.h5
|
|
test_detach.h5
|
|
test_ds1.h5
|
|
test_ds2.h5
|
|
test_ds3.h5
|
|
test_ds4.h5
|
|
test_ds5.h5
|
|
test_ds6.h5
|
|
test_ds7.h5
|
|
test_ds8.h5
|
|
test_ds9.h5
|
|
test_image1.h5
|
|
test_image2.h5
|
|
test_image3.h5
|
|
test_lite1.h5
|
|
test_lite2.h5
|
|
test_packet_compress.h5
|
|
test_packet_table.h5
|
|
test_table.h5
|
|
)
|
|
|
|
HL_ADD_TEST (test_ds "dsdata.txt;dslat.txt;dslon.txt;test_ds_be.h5;test_ds_le.h5")
|
|
HL_ADD_TEST (test_image "image8.txt;sepia.pal;earth.pal;image24pixel.txt;image24plane.txt;usa.wri")
|
|
HL_ADD_TEST (test_lite "dtype_file.txt")
|
|
HL_ADD_TEST (test_packet "")
|
|
HL_ADD_TEST (test_table "test_table_be.hdf5;test_table_cray.hdf5;test_table_le.hdf5")
|
|
|
|
# --------------------------------------------------------------------
|
|
# This executable is used to generate test files for the test_ds test.
|
|
# It should only be run during development when new test files are needed
|
|
# --------------------------------------------------------------------
|
|
IF (HDF5_BUILD_GENERATORS AND NOT BUILD_SHARED_LIBS)
|
|
ADD_EXECUTABLE (hl_gen_test_ds gen_test_ds.c)
|
|
TARGET_NAMING (hl_gen_test_ds ${LIB_TYPE})
|
|
TARGET_LINK_LIBRARIES (hl_gen_test_ds
|
|
${HDF5_HL_LIB_TARGET}
|
|
${HDF5_LIB_TARGET}
|
|
${HDF5_TEST_LIB_TARGET}
|
|
)
|
|
SET_TARGET_PROPERTIES (hl_gen_test_ds PROPERTIES FOLDER test/hl/gen)
|
|
ENDIF (HDF5_BUILD_GENERATORS AND NOT BUILD_SHARED_LIBS)
|