X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fbugs%2Fcomputebug.sh;h=6340d52179ae327b4fb8010a49f4aebff2f45360;hb=4b1bad1b8eebc79d2e05ab4f023fc269d577473b;hp=ecc6cb4e33691cf2537b2cda1984ff65865cc1bd;hpb=1fc3af93c0ba6cbaf7ef09edc979096b6f16dd6f;p=pspp-builds.git diff --git a/tests/bugs/computebug.sh b/tests/bugs/computebug.sh index ecc6cb4e..6340d521 100755 --- a/tests/bugs/computebug.sh +++ b/tests/bugs/computebug.sh @@ -1,6 +1,6 @@ #!/bin/sh -# This program tests .... +# This program tests for a bug in the `compute' command TEMPDIR=/tmp/pspp-tst-$$ @@ -42,21 +42,23 @@ pass() } mkdir -p $TEMPDIR -cp $top_srcdir/tests/bugs/computebug.stat $TEMPDIR -cd $TEMPDIR +activity="copy file" +cp $top_srcdir/tests/bugs/computebug.stat $TEMPDIR +if [ $? -ne 0 ] ; then no_result ; fi +activity="chdir" +cd $TEMPDIR if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $top_srcdir/src/pspp -o raw-ascii $TEMPDIR/computebug.stat +$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/computebug.stat if [ $? -ne 0 ] ; then no_result ; fi activity="compare output" diff -b -B -w $TEMPDIR/pspp.list $top_srcdir/tests/bugs/computebug.out - if [ $? -ne 0 ] ; then fail ; fi pass;