[svn-r6310] Purpose:

patch
Description:
    Tflops interprets "$@" as "" when no parameter is given (e.g., the
    case of missing file name).  Changed it to use $@ till Tflops fixes it.
Platforms tested:
    Tflops, burrwhite (pp), modi4(pp)
This commit is contained in:
Albert Cheng 2003-01-22 01:08:52 -05:00
parent 127dc2f80d
commit 06ace9e426

View File

@ -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