diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-03-15 20:44:51 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-03-15 20:44:51 (GMT) |
commit | 207c05e2e9f1c2844416c19fe5b74b2d71610fd1 (patch) | |
tree | c19592659592a26a552c777222be20328becd189 /tools/h5ls | |
parent | 956fde680a35b1fbc19fa5ff1367fcf8eb54c194 (diff) | |
download | hdf5-207c05e2e9f1c2844416c19fe5b74b2d71610fd1.zip hdf5-207c05e2e9f1c2844416c19fe5b74b2d71610fd1.tar.gz hdf5-207c05e2e9f1c2844416c19fe5b74b2d71610fd1.tar.bz2 |
[svn-r22075] Add test for multiple files with h5ls and h5dump.
Tested: local linux
Diffstat (limited to 'tools/h5ls')
-rw-r--r-- | tools/h5ls/CMakeLists.txt | 6 | ||||
-rw-r--r-- | tools/h5ls/testh5ls.sh.in | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/tools/h5ls/CMakeLists.txt b/tools/h5ls/CMakeLists.txt index 599202f..0dec21c 100644 --- a/tools/h5ls/CMakeLists.txt +++ b/tools/h5ls/CMakeLists.txt @@ -98,6 +98,7 @@ IF (BUILD_TESTING) ${HDF5_TOOLS_SRC_DIR}/testfiles/tgroup-3.ls ${HDF5_TOOLS_SRC_DIR}/testfiles/thlink-1.ls ${HDF5_TOOLS_SRC_DIR}/testfiles/tloop-1.ls + ${HDF5_TOOLS_SRC_DIR}/testfiles/tmultifile.ls ${HDF5_TOOLS_SRC_DIR}/testfiles/tnestcomp-1.ls ${HDF5_TOOLS_SRC_DIR}/testfiles/tnestcomp-2.ls ${HDF5_TOOLS_SRC_DIR}/testfiles/tnestcomp-3.ls @@ -354,6 +355,11 @@ IF (BUILD_TESTING) # when used file with no dangling links - expected exit code 0 ADD_H5_TEST (thlinks-nodangle-1 0 -w80 --follow-symlinks --no-dangling-links thlink.h5) +# test for wildcards in filename (does not work with cmake) +# ADD_H5_TEST (tstarfile 0 -w80 t*link.h5) +# ADD_H5_TEST (tqmarkfile 0 -w80 t?link.h5) + ADD_H5_TEST (tmultifile 0 -w80 thlink.h5 tslink.h5) + # tests for hard links ADD_H5_TEST (thlink-1 0 -w80 thlink.h5) diff --git a/tools/h5ls/testh5ls.sh.in b/tools/h5ls/testh5ls.sh.in index e79be02..3f84ac5 100644 --- a/tools/h5ls/testh5ls.sh.in +++ b/tools/h5ls/testh5ls.sh.in @@ -131,6 +131,7 @@ $SRC_H5LS_TESTFILES/tgroup-2.ls $SRC_H5LS_TESTFILES/tgroup-3.ls $SRC_H5LS_TESTFILES/thlink-1.ls $SRC_H5LS_TESTFILES/tloop-1.ls +$SRC_H5LS_TESTFILES/tmultifile.ls $SRC_H5LS_TESTFILES/tnestcomp-1.ls $SRC_H5LS_TESTFILES/tnestcomp-2.ls $SRC_H5LS_TESTFILES/tnestcomp-3.ls @@ -324,9 +325,9 @@ TOOLTEST thlinks-nodangle-1.ls 0 -w80 --follow-symlinks --no-dangling-links thli # test for wildcards in filename (does not work with cmake) # this h5ls test script does not pass the filename properly like the h5dump test script??? -#TOOLTEST tstarfile t*link.h5 -#TOOLTEST tqmarkfile t?link.h5 -#TOOLTEST tmultifile t[hs]link.h5 +#TOOLTEST tstarfile 0 -w80 t*link.h5 +#TOOLTEST tqmarkfile 0 -w80 t?link.h5 +TOOLTEST tmultifile 0 -w80 thlink.h5 tslink.h5 # tests for hard links TOOLTEST thlink-1.ls 0 -w80 thlink.h5 |