summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-08-20 16:01:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-08-20 16:01:10 (GMT)
commitead30638850f1403c15b8a075e949ff331ec1028 (patch)
treeb75aae023192dc8f2f9b6a7ebde663a4d003dbb5 /tools
parent7a009bebff3101fc623dccfbf82bf26682a831ee (diff)
downloadhdf5-ead30638850f1403c15b8a075e949ff331ec1028.zip
hdf5-ead30638850f1403c15b8a075e949ff331ec1028.tar.gz
hdf5-ead30638850f1403c15b8a075e949ff331ec1028.tar.bz2
[svn-r19265] Correct naming of SKIP test
Tested: local linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt
index bbce1bd..45f8b96 100644
--- a/tools/h5dump/CMakeLists.txt
+++ b/tools/h5dump/CMakeLists.txt
@@ -281,7 +281,10 @@ IF (BUILD_TESTING)
MACRO (ADD_SKIP_H5_TEST skipresultfile skipresultcode testtype)
IF (${testtype} STREQUAL "SKIP")
- MESSAGE (STATUS "SKIP ${skipresultfile} ${ARGN}")
+ ADD_TEST (
+ NAME H5DUMP-${skipresultfile}
+ COMMAND ${CMAKE_COMMAND} -E echo "SKIP ${skipresultfile} ${ARGN}"
+ )
ELSE (${testtype} STREQUAL "SKIP")
ADD_H5_TEST (${skipresultfile} ${skipresultcode} ${ARGN})
ENDIF (${testtype} STREQUAL "SKIP")