X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fautorecod.sh;h=98b2c078dd1f03357103bc3377a7235d685b35fe;hb=1339492699ce7e12c9bf9fa17f9d60a66024cbd1;hp=08428c1efe4b4e56bda48808ef7e83d4645105d0;hpb=c1edead52e3b254bc305afd1d647b94bd10ca5d4;p=pspp diff --git a/tests/command/autorecod.sh b/tests/command/autorecod.sh index 08428c1efe..98b2c078dd 100755 --- a/tests/command/autorecod.sh +++ b/tests/command/autorecod.sh @@ -3,6 +3,8 @@ # This program tests the autorecode command TEMPDIR=/tmp/pspp-tst-$$ +TESTFILE=$TEMPDIR/`basename $0`.sps + here=`pwd`; @@ -46,9 +48,9 @@ mkdir -p $TEMPDIR cd $TEMPDIR activity="create program" -cat > $TEMPDIR/prog.sps < $TESTFILE < 4 asdfk 1 3 3 end data. -autorecode x y into a b/descend. +autorecode x y into A B/descend. list. /* Just to make sure it works on second & subsequent executions, /* try it again. -compute z=trunc(y/2). -autorecode z into w. +compute Z=trunc(y/2). +autorecode z into W. list. EOF if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$here/../src/pspp -o raw-ascii $TEMPDIR/prog.sps +$SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi activity="test output" -diff -B $TEMPDIR/pspp.list - <