diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-08-20 16:01:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-08-20 16:01:10 (GMT) |
commit | ead30638850f1403c15b8a075e949ff331ec1028 (patch) | |
tree | b75aae023192dc8f2f9b6a7ebde663a4d003dbb5 | |
parent | 7a009bebff3101fc623dccfbf82bf26682a831ee (diff) | |
download | hdf5-ead30638850f1403c15b8a075e949ff331ec1028.zip hdf5-ead30638850f1403c15b8a075e949ff331ec1028.tar.gz hdf5-ead30638850f1403c15b8a075e949ff331ec1028.tar.bz2 |
[svn-r19265] Correct naming of SKIP test
Tested: local linux
-rw-r--r-- | tools/h5dump/CMakeLists.txt | 5 |
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") |