summaryrefslogtreecommitdiffstats
path: root/tools/test/h5dump/CMakeTestsXML.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2024-03-05 17:07:16 (GMT)
committerGitHub <noreply@github.com>2024-03-05 17:07:16 (GMT)
commit0be892585a63a34d8dbe687c2cebdbff30809cce (patch)
tree83d9528271f21f3497e667546e68602bb0dc35f6 /tools/test/h5dump/CMakeTestsXML.cmake
parent42c7e1d073d6e8070d5483bfdf30f5039a69b264 (diff)
downloadhdf5-0be892585a63a34d8dbe687c2cebdbff30809cce.zip
hdf5-0be892585a63a34d8dbe687c2cebdbff30809cce.tar.gz
hdf5-0be892585a63a34d8dbe687c2cebdbff30809cce.tar.bz2
Rename incorrectly named option (#4067)
* Rename incorrectly named option * Restore the correct uses of USING_MEMCHECKER * Update release note
Diffstat (limited to 'tools/test/h5dump/CMakeTestsXML.cmake')
-rw-r--r--tools/test/h5dump/CMakeTestsXML.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5dump/CMakeTestsXML.cmake b/tools/test/h5dump/CMakeTestsXML.cmake
index 43e77ee..b322d76 100644
--- a/tools/test/h5dump/CMakeTestsXML.cmake
+++ b/tools/test/h5dump/CMakeTestsXML.cmake
@@ -167,7 +167,7 @@
macro (ADD_XML_SKIP_H5_TEST skipresultfile skipresultcode testtype)
if ("${testtype}" STREQUAL "SKIP")
- if (NOT HDF5_ENABLE_USING_MEMCHECKER)
+ if (NOT HDF5_USING_ANALYSIS_TOOL)
add_test (
NAME H5DUMP_XML-${skipresultfile}
COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${skipresultfile}.xml --xml ${ARGN}"
@@ -180,7 +180,7 @@
endmacro ()
macro (ADD_XML_H5_TEST resultfile resultcode)
- if (HDF5_ENABLE_USING_MEMCHECKER)
+ if (HDF5_USING_ANALYSIS_TOOL)
add_test (NAME H5DUMP_XML-${resultfile} COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:h5dump> --xml ${ARGN})
if (${resultcode})
set_tests_properties (H5DUMP_XML-${resultfile} PROPERTIES WILL_FAIL "true")