mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
7f1e49206d
This is where most people will expect to find license information. The COPYING_LBNL_HDF5 file has also been renamed to LICENSE_LBNL_HDF5. The licenses are unchanged.
136 lines
7.5 KiB
CMake
136 lines
7.5 KiB
CMake
|
|
# 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 LICENSE file, which can be found at the root of the source code
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
|
# 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 S H E L L S C R I P T S ###
|
|
##############################################################################
|
|
|
|
find_program (PWSH NAMES pwsh powershell)
|
|
if (PWSH)
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST/use_cases_test")
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST/swmr_test")
|
|
file (MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/H5TEST/vds_swmr_test")
|
|
|
|
set (srcdir ${HDF5_TEST_SOURCE_DIR})
|
|
set (H5_UTILS_TEST_BUILDDIR ${CMAKE_TEST_OUTPUT_DIRECTORY})
|
|
set (H5_TEST_BUILDDIR ${HDF5_TEST_BINARY_DIR}/H5TEST)
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_swmr.pwsh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_swmr.ps1 @ONLY)
|
|
# test commented out as currently the programs are not allowing another access to the data file
|
|
#add_test (H5SHELL-testswmr ${PWSH} ${HDF5_TEST_BINARY_DIR}/H5TEST/testswmr.ps1)
|
|
#set_tests_properties (H5SHELL-testswmr PROPERTIES
|
|
# ENVIRONMENT "PATH=$ENV{PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
# WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
#)
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_vds_swmr.pwsh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_vds_swmr.ps1 @ONLY)
|
|
# test commented out as currently the programs are not allowing another access to the data file
|
|
#add_test (H5SHELL-testvdsswmr ${PWSH} ${HDF5_TEST_BINARY_DIR}/H5TEST/testvdsswmr.ps1)
|
|
#set_tests_properties (H5SHELL-testvdsswmr PROPERTIES
|
|
# ENVIRONMENT "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
# WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
#)
|
|
elseif (UNIX)
|
|
find_program (SH_PROGRAM bash)
|
|
if (SH_PROGRAM)
|
|
set (srcdir ${HDF5_TEST_SOURCE_DIR})
|
|
set (H5_UTILS_TEST_BUILDDIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
|
|
set (H5_TEST_BUILDDIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
|
|
##############################################################################
|
|
# configure scripts to test dir
|
|
##############################################################################
|
|
if (H5_PERL_FOUND)
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_flush_refresh.sh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_flush_refresh.sh @ONLY)
|
|
endif ()
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_use_cases.sh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_use_cases.sh @ONLY)
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_swmr.sh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_swmr.sh @ONLY)
|
|
configure_file(${HDF5_TEST_SOURCE_DIR}/test_vds_swmr.sh.in ${HDF5_TEST_BINARY_DIR}/H5TEST/test_vds_swmr.sh @ONLY)
|
|
|
|
##############################################################################
|
|
# copy test programs to test dir
|
|
##############################################################################
|
|
add_custom_command (
|
|
TARGET accum_swmr_reader
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND}
|
|
ARGS -E copy_if_different "${HDF5_SOURCE_DIR}/bin/output_filter.sh" "${HDF5_TEST_BINARY_DIR}/H5TEST/bin/output_filter.sh"
|
|
)
|
|
|
|
##############################################################################
|
|
##############################################################################
|
|
### A D D I T I O N A L T E S T S ###
|
|
##############################################################################
|
|
##############################################################################
|
|
# H5_CHECK_TESTS
|
|
#---------------
|
|
# atomic_writer
|
|
# atomic_reader
|
|
# filenotclosed
|
|
# del_many_dense_attrs
|
|
# flushrefresh
|
|
##############################################################################
|
|
# autotools script tests
|
|
# error_test and err_compat are built at the same time as the other tests, but executed by test_error.sh
|
|
# NOT CONVERTED accum_swmr_reader is used by accum.c
|
|
# NOT CONVERTED atomic_writer and atomic_reader are stand-alone programs
|
|
# links_env is used by test_links_env.sh
|
|
# filenotclosed and del_many_dense_attrs are used by test_abort_fail.sh
|
|
# NOT CONVERTED flushrefresh is used by test_flush_refresh.sh.
|
|
# NOT CONVERTED use_append_chunk, use_append_mchunks and use_disable_mdc_flushes are used by test_use_cases.sh
|
|
# NOT CONVERTED swmr_* files (besides swmr.c) are used by test_swmr.sh.
|
|
# NOT CONVERTED vds_swmr_* files are used by test_vds_swmr.sh
|
|
# NOT CONVERTED 'make check' doesn't run them directly, so they are not included in TEST_PROG.
|
|
# NOT CONVERTED Also build testmeta, which is used for timing test. It builds quickly
|
|
# NOT CONVERTED and this lets automake keep all its test programs in one place.
|
|
##############################################################################
|
|
|
|
##############################################################################
|
|
### S W M R T E S T S
|
|
##############################################################################
|
|
# test_flush_refresh.sh: flushrefresh
|
|
# test_use_cases.sh: use_append_chunk, use_append_mchunks, use_disable_mdc_flushes
|
|
# test_swmr.sh: swmr*
|
|
# test_vds_swmr.sh: vds_swmr*
|
|
add_test (H5SHELL-test_flush_refresh ${SH_PROGRAM} ${HDF5_TEST_BINARY_DIR}/H5TEST/test_flush_refresh.sh)
|
|
set_tests_properties (H5SHELL-test_flush_refresh PROPERTIES
|
|
ENVIRONMENT "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
)
|
|
if ("H5SHELL-test_flush_refresh" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
|
|
set_tests_properties (H5SHELL-test_flush_refresh PROPERTIES DISABLED true)
|
|
endif ()
|
|
add_test (H5SHELL-test_use_cases ${SH_PROGRAM} ${HDF5_TEST_BINARY_DIR}/H5TEST/test_use_cases.sh)
|
|
set_tests_properties (H5SHELL-test_use_cases PROPERTIES
|
|
ENVIRONMENT "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
)
|
|
if ("H5SHELL-test_use_cases" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
|
|
set_tests_properties (H5SHELL-test_use_cases PROPERTIES DISABLED true)
|
|
endif ()
|
|
add_test (H5SHELL-test_swmr ${SH_PROGRAM} ${HDF5_TEST_BINARY_DIR}/H5TEST/test_swmr.sh)
|
|
set_tests_properties (H5SHELL-test_swmr PROPERTIES
|
|
ENVIRONMENT "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
)
|
|
if ("H5SHELL-test_swmr" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
|
|
set_tests_properties (H5SHELL-test_swmr PROPERTIES DISABLED true)
|
|
endif ()
|
|
add_test (H5SHELL-test_vds_swmr ${SH_PROGRAM} ${HDF5_TEST_BINARY_DIR}/H5TEST/test_vds_swmr.sh)
|
|
set_tests_properties (H5SHELL-test_vds_swmr PROPERTIES
|
|
ENVIRONMENT "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
|
|
WORKING_DIRECTORY ${HDF5_TEST_BINARY_DIR}/H5TEST
|
|
)
|
|
if ("H5SHELL-test_vds_swmr" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
|
|
set_tests_properties (H5SHELL-test_vds_swmr PROPERTIES DISABLED true)
|
|
endif ()
|
|
endif ()
|
|
endif ()
|