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/h5diff | |
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/h5diff')
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index 005a736..d6550fd 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -201,19 +201,12 @@ TOOLTEST() { fi # Run test. - # Tflops interprets "$@" as "" when no parameter is given (e.g., the - # case of missing file name). Changed it to use $@ till Tflops fixes it. - #TESTING $H5DIFF $@ ( #echo "#############################" #echo "Expected output for '$H5DIFF $@'" #echo "#############################" #cd $srcdir/testfiles - if [ "`uname -s`" = "TFLOPS O/S" ]; then - eval $RUNCMD $H5DIFF_BIN $@ - else - eval $RUNCMD $H5DIFF_BIN "$@" - fi + eval $RUNCMD $H5DIFF_BIN "$@" ) >$actual 2>$actual_err # save actual and actual_err in case they are needed later. cp $actual $actual_sav |