diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-10-07 05:08:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-10-07 05:08:05 (GMT) |
commit | 8d8f365711cd9c5bb27a7db31d986dad779506f6 (patch) | |
tree | 7c8e84fa28f8ea1acd54d199e63b83490dcac787 /tools/h5dump | |
parent | 7f1379704fd291c2f1a16c0087690f0b2ce90e4c (diff) | |
download | hdf5-8d8f365711cd9c5bb27a7db31d986dad779506f6.zip hdf5-8d8f365711cd9c5bb27a7db31d986dad779506f6.tar.gz hdf5-8d8f365711cd9c5bb27a7db31d986dad779506f6.tar.bz2 |
[svn-r17606] Code 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 | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in index 9dcb562..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 |