X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Flist.sh;h=3bc92aa67335ea22e186b46a86d989a3602a3185;hb=29c51e39acf3554a56aa2adc9451cc5fd70318ae;hp=8b96af218e1b022673b0c856d31406bb559466bd;hpb=f10ed4942f0f2253d236d5e454a8ab702ed7e72b;p=pspp-builds.git diff --git a/tests/command/list.sh b/tests/command/list.sh index 8b96af21..3bc92aa6 100755 --- a/tests/command/list.sh +++ b/tests/command/list.sh @@ -3,6 +3,7 @@ # This program tests the LIST command. TEMPDIR=/tmp/pspp-tst-$$ +TESTFILE=$TEMPDIR/`basename $0`.sps here=`pwd`; @@ -49,24 +50,14 @@ cd $TEMPDIR activity="create program" cat > $TEMPDIR/list.stat << foobar *** Single lines. -remark EOF ----------------------------------------------------------------------- -Testing use of LIST in single-line cases. ----------------------------------------------------------------------- -EOF -data list file='$here/weighting.data'/AVAR 1-5 BVAR 6-10. +data list file='$top_srcdir/tests/weighting.data'/AVAR 1-5 BVAR 6-10. weight by BVAR. list. *list /cases=from 5 to 20 by 2 /format numbered. list /format numbered weight. *** Multiple lines. -remark EOF ----------------------------------------------------------------------- -Testing use of LIST in multi-line cases. ----------------------------------------------------------------------- -EOF -data list file='$here/list.data' notable /X000 to X126 1-127. +data list file='$top_srcdir/tests/list.data' notable /X000 to X126 1-127. *list /cases=from 1 to 25 by 5 /format numbered. list x000 to x030. list /cases=from 1 to 25. @@ -75,17 +66,13 @@ foobar if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/list.stat +$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/list.stat if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" diff -b -B $TEMPDIR/pspp.list - <