diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-07-31 19:53:14 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-07-31 19:53:14 (GMT) |
commit | 26303bfdb55cf158a24a58ad64e81c9bbd65b7f9 (patch) | |
tree | d4faa210235702a2240acbac9e2432731de24fd5 /tools/h5copy/testh5copy.sh | |
parent | beb04ae817268a49656b5abe043627dcbba15e5d (diff) | |
download | hdf5-26303bfdb55cf158a24a58ad64e81c9bbd65b7f9.zip hdf5-26303bfdb55cf158a24a58ad64e81c9bbd65b7f9.tar.gz hdf5-26303bfdb55cf158a24a58ad64e81c9bbd65b7f9.tar.bz2 |
[svn-r12520] bug fix
added a call to h5tools_close
tested: linux
Diffstat (limited to 'tools/h5copy/testh5copy.sh')
-rw-r--r-- | tools/h5copy/testh5copy.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/tools/h5copy/testh5copy.sh b/tools/h5copy/testh5copy.sh index 5bf4828..13b7e81 100644 --- a/tools/h5copy/testh5copy.sh +++ b/tools/h5copy/testh5copy.sh @@ -45,8 +45,12 @@ TOOLTEST() { TESTING $H5COPY $@ ( - cd $srcdir/../testfiles - $RUNSERIAL $H5COPY_BIN $@ + echo "#############################" + echo " output for '$H5COPY $@'" + echo "#############################" + cd $srcdir/../testfiles +# echo " pwd = `pwd`" + $RUNSERIAL $H5COPY_BIN $@ ) > output.out RET=$? if [ $RET != 0 ] ; then @@ -65,8 +69,8 @@ TOOLTEST() { #TOOLTEST -v test1.h5/integer test1.out.h5/integer_copy #TOOLTEST -v test1.h5/g1 test1.out.h5/g1 -#if test $nerrors -eq 0 ; then -# echo "All h5copy tests passed." -#fi +if test $nerrors -eq 0 ; then + echo "All h5copy tests passed." +fi exit $nerrors |