diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-10-07 05:31:49 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-10-07 05:31:49 (GMT) |
commit | de76999134dffc8700b88115c4bde5fe75acfc60 (patch) | |
tree | 642a455b69c922115b400cf3ac77d883907a4f6f /tools/h5dump | |
parent | 190e10b63d143d4c57cba60f6b70cbcc2f0e1af9 (diff) | |
download | hdf5-de76999134dffc8700b88115c4bde5fe75acfc60.zip hdf5-de76999134dffc8700b88115c4bde5fe75acfc60.tar.gz hdf5-de76999134dffc8700b88115c4bde5fe75acfc60.tar.bz2 |
[svn-r17607] ode Cleanup:
TFLOPS machine has retired long ago. Removed all code specific for its
support.
Test:
h5committested.
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/testh5dump.sh.in | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in index 3ffff50..9e6cb01 100644 --- a/tools/h5dump/testh5dump.sh.in +++ b/tools/h5dump/testh5dump.sh.in @@ -161,12 +161,8 @@ DIFFTEST() { PRINT_H5DIFF $@ ( - cd $srcdir/../testfiles - if [ "`uname -s`" = "TFLOPS O/S" ]; then - $RUNSERIAL $H5DIFF_BIN $@ -q - else - $RUNSERIAL $H5DIFF_BIN "$@" -q - fi + cd $srcdir/../testfiles + $RUNSERIAL $H5DIFF_BIN "$@" -q ) RET=$? if [ $RET != 0 ] ; then @@ -198,12 +194,8 @@ IMPORTTEST() PRINT_H5IMPORT $@ ( - cd $srcdir/../testfiles - if [ "`uname -s`" = "TFLOPS O/S" ]; then - $RUNSERIAL $H5IMPORT_BIN $@ - else - $RUNSERIAL $H5IMPORT_BIN "$@" - fi + cd $srcdir/../testfiles + $RUNSERIAL $H5IMPORT_BIN "$@" ) RET=$? if [ $RET != 0 ] ; then @@ -340,6 +332,7 @@ TOOLTEST tnofilename.ddl # tests for super block TOOLTEST tboot1.ddl -H -B -d dset tfcontents1.h5 TOOLTEST tboot2.ddl -B tfcontents2.h5 +TOOLTEST file_space.ddl -B file_space.h5 # test -p with a non existing dataset TOOLTEST tperror.ddl -p -d bogus tfcontents1.h5 |