diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-10-05 21:18:42 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-10-05 21:18:42 (GMT) |
commit | 79618af13e72beba6da5a324518325364cd10233 (patch) | |
tree | 9aa7b02c8ff2230b24c9aaab36a6819f46e1d325 | |
parent | 4a501ecfe47d390cdaf0164bae27bf639b6b89bc (diff) | |
parent | 49031748302822467887923c59d02d01e857d25b (diff) | |
download | hdf5-79618af13e72beba6da5a324518325364cd10233.zip hdf5-79618af13e72beba6da5a324518325364cd10233.tar.gz hdf5-79618af13e72beba6da5a324518325364cd10233.tar.bz2 |
Merge pull request #696 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '49031748302822467887923c59d02d01e857d25b':
Fix other test name typos
Fix cmake test name for valgrind
-rw-r--r-- | tools/test/h5dump/CMakeTestsXML.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/test/h5dump/CMakeTestsXML.cmake b/tools/test/h5dump/CMakeTestsXML.cmake index 0f8875f..9c68e5f 100644 --- a/tools/test/h5dump/CMakeTestsXML.cmake +++ b/tools/test/h5dump/CMakeTestsXML.cmake @@ -176,12 +176,12 @@ macro (ADD_XML_H5_TEST resultfile resultcode) if (HDF5_ENABLE_USING_MEMCHECKER) add_test (NAME H5DUMP_XML-${resultfile} COMMAND $<TARGET_FILE:h5dump> --xml ${ARGN}) - set_tests_properties (H5DUMP-XML-${resultfile} PROPERTIES WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/testfiles/xml") + set_tests_properties (H5DUMP_XML-${resultfile} PROPERTIES WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/testfiles/xml") if (NOT "${resultcode}" STREQUAL "0") - set_tests_properties (H5DUMP-XML-${resultfile} PROPERTIES WILL_FAIL "true") + set_tests_properties (H5DUMP_XML-${resultfile} PROPERTIES WILL_FAIL "true") endif () if (NOT "${last_xml_test}" STREQUAL "") - set_tests_properties (H5DUMP-XML-${resultfile} PROPERTIES DEPENDS ${last_xml_test}) + set_tests_properties (H5DUMP_XML-${resultfile} PROPERTIES DEPENDS ${last_xml_test}) endif () else () # Remove any output file left over from previous test run |