summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-03-08 14:48:33 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-03-08 14:48:33 (GMT)
commit00d29181b51deba64a8a716309e828a0bd53aaa7 (patch)
tree0a5def94642db4f09107b702b5bcd00b734de3ba
parente1721103c562d422345d7b4c186e4126dd78388c (diff)
parent6d75a3ffb4b1451ff80b7fdddafa5859376bee77 (diff)
downloadhdf5-00d29181b51deba64a8a716309e828a0bd53aaa7.zip
hdf5-00d29181b51deba64a8a716309e828a0bd53aaa7.tar.gz
hdf5-00d29181b51deba64a8a716309e828a0bd53aaa7.tar.bz2
Merge pull request #928 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '6d75a3ffb4b1451ff80b7fdddafa5859376bee77': Fix misaligned macro Fix CMake missing parens
-rw-r--r--tools/test/h5repack/CMakeTests.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/test/h5repack/CMakeTests.cmake b/tools/test/h5repack/CMakeTests.cmake
index 607d5b5..f40c0b1 100644
--- a/tools/test/h5repack/CMakeTests.cmake
+++ b/tools/test/h5repack/CMakeTests.cmake
@@ -629,7 +629,7 @@
set_tests_properties (ADD_H5_VERIFY_INVALIDBOUNDS-h5repack-${testname}-clear-objects PROPERTIES DEPENDS ${last_test})
endif ()
add_test (
- NAME ADD_H5_VERIFY_INVALIDBOUNDS-${testname}
+ NAME ADD_H5_VERIFY_INVALIDBOUNDS-h5repack-${testname}
COMMAND $<TARGET_FILE:h5repack> -j;${lowbound};-k;${highbound} ${PROJECT_BINARY_DIR}/testfiles/${testfile} ${PROJECT_BINARY_DIR}/testfiles/out-${testname}.${testfile}
)
set_tests_properties (
@@ -637,7 +637,6 @@
DEPENDS ADD_H5_VERIFY_INVALIDBOUNDS-h5repack-${testname}-clear-objects
WILL_FAIL "true"
)
- endif ()
endmacro ()
macro (ADD_H5_TEST_META testname testfile)
@@ -1438,7 +1437,7 @@ ADD_H5_VERIFY_SUPERBLOCK (SB_IS_2 h5repack_layout.h5 1 2 2)
# -j 2 -k 2, superblock will be 3
ADD_H5_VERIFY_SUPERBLOCK (SB_IS_3 h5repack_layout.h5 2 2 3)
# -j 0 -k 1, file cannot be opened
-ADD_H5_VERIFY_INVALIDBOUNDS latest_latest_invalid bounds_latest_latest.h5 0 1
+ADD_H5_VERIFY_INVALIDBOUNDS (latest_latest_invalid bounds_latest_latest.h5 0 1)
##############################################################################
### P L U G I N T E S T S