diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-03-13 19:57:00 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-03-13 19:57:00 (GMT) |
commit | 63df2d99fdc8839613cc2e3525835a8703c5e2b2 (patch) | |
tree | 9a347b2a702205cb948a660f8535faa7d97171ee /tools | |
parent | 46a289c79674eed28d768b88c2b342e1164353cf (diff) | |
download | hdf5-63df2d99fdc8839613cc2e3525835a8703c5e2b2.zip hdf5-63df2d99fdc8839613cc2e3525835a8703c5e2b2.tar.gz hdf5-63df2d99fdc8839613cc2e3525835a8703c5e2b2.tar.bz2 |
[svn-r22063] escape char in test needed multiple slashes to get through cmake parsing
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump/CMakeLists.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/tools/h5dump/CMakeLists.txt b/tools/h5dump/CMakeLists.txt index 70b1b56..861ec01 100644 --- a/tools/h5dump/CMakeLists.txt +++ b/tools/h5dump/CMakeLists.txt @@ -127,6 +127,9 @@ IF (BUILD_TESTING) tlonglinks.ddl tloop-1.ddl tmulti.ddl + tmultifile.ddl + tqmarkfile.ddl + tstarfile.ddl tnamed_dtype_attr.ddl tnestcomp-1.ddl tnbit.ddl @@ -831,6 +834,12 @@ IF (BUILD_TESTING) tloop-1.out.err tmulti.out tmulti.out.err + tmultifile.out + tmultifile.out.err + tqmarkfile.out + tqmarkfile.out.err + tstarfile.out + tstarfile.out.err tnamed_dtype_attr.out tnamed_dtype_attr.out.err tnestcomp-1.out @@ -937,7 +946,7 @@ IF (BUILD_TESTING) # test for displaying attributes ADD_H5_TEST (tattr-1 0 --enable-error-stack tattr.h5) # test for displaying the selected attributes of string type and scalar space - ADD_H5_TEST (tattr-2 0 --enable-error-stack -a "/\/attr1" --attribute /attr4 --attribute=/attr5 tattr.h5) + ADD_H5_TEST (tattr-2 0 --enable-error-stack -a /\\\\/attr1 --attribute /attr4 --attribute=/attr5 tattr.h5) # test for header and error messages ADD_H5_MASK_TEST (tattr-3 1 --enable-error-stack --header -a /attr2 --attribute=/attr tattr.h5) # test for displaying attributes in shared datatype (also in group and dataset) @@ -1014,6 +1023,11 @@ IF (BUILD_TESTING) ADD_H5_TEST (tarray7 0 --enable-error-stack tarray7.h5) ADD_H5_TEST (tarray8 0 --enable-error-stack tarray8.h5) + # test for wildcards in filename (does not work with cmake) + #ADD_H5_MASK_TEST (tstarfile 0 --enable-error-stack -H -d Dataset1 tarr*.h5) + #ADD_H5_MASK_TEST (tqmarkfile 0 --enable-error-stack -H -d Dataset1 tarray?.h5) + #ADD_H5_TEST (tmultifile 0 --enable-error-stack -H -d Dataset1 tarray[2-7].h5) + # test for files with empty data ADD_H5_TEST (tempty 0 --enable-error-stack tempty.h5) |