summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/h5dump/testh5dump.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/h5dump/testh5dump.sh b/tools/h5dump/testh5dump.sh
index 99c1a89..588d6c3 100755
--- a/tools/h5dump/testh5dump.sh
+++ b/tools/h5dump/testh5dump.sh
@@ -53,13 +53,19 @@ TOOLTEST() {
shift
# 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 $DUMPER $@
(
echo "#############################"
echo "Expected output for '$DUMPER $@'"
echo "#############################"
cd $srcdir/../testfiles
- $RUNSERIAL $DUMPER_BIN "$@"
+ if [ "`uname -s`" = "TFLOPS O/S" ]; then
+ $RUNSERIAL $DUMPER_BIN $@
+ else
+ $RUNSERIAL $DUMPER_BIN "$@"
+ fi
) >$actual 2>$actual_err
cat $actual_err >> $actual