diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-12-08 13:45:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 13:45:54 (GMT) |
commit | 4f01fb39d8932e100892533760f5e1ffed98908c (patch) | |
tree | 2030a4e8b29d6bba8ba57846a39b7971ea63404e /tools | |
parent | 92ff840f5881e1b650a8b104ce9358b524930e70 (diff) | |
download | hdf5-4f01fb39d8932e100892533760f5e1ffed98908c.zip hdf5-4f01fb39d8932e100892533760f5e1ffed98908c.tar.gz hdf5-4f01fb39d8932e100892533760f5e1ffed98908c.tar.bz2 |
Correct CMake command and example packaging (#3888)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/h5copy/CMakeTests.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5copy/CMakeTests.cmake b/tools/test/h5copy/CMakeTests.cmake index fb02d81..b4daa87 100644 --- a/tools/test/h5copy/CMakeTests.cmake +++ b/tools/test/h5copy/CMakeTests.cmake @@ -163,8 +163,8 @@ COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:h5copy${tgt_file_ext}> -i ./testfiles/${infile} -o ./testfiles/${testname}.out.h5 -v -s ${psparam} -d ${pdparam} ) set_tests_properties (H5COPY-${testname}-prefill PROPERTIES DEPENDS H5COPY-${testname}-clear-objects) - if ("" MATCHES "${HDF5_DISABLE_TESTS_REGEX}") - set_tests_properties ( PROPERTIES DISABLED true) + if ("H5COPY-${testname}-prefill" MATCHES "${HDF5_DISABLE_TESTS_REGEX}") + set_tests_properties (H5COPY-${testname}-prefill PROPERTIES DISABLED true) endif () add_test ( |