Implemented long variable names a la spss V12.
[pspp-builds.git] / tests / command / loop.sh
index 474c89947f5fcdfa75e7bb26fb79c094563ef10d..3c824c9d8e86f7791be8bbe9ba4d52b199478eef 100755 (executable)
@@ -3,6 +3,7 @@
 # This program tests the LOOP command
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
 
 here=`pwd`;
 
@@ -47,15 +48,15 @@ cd $TEMPDIR
 
 activity="create prog"
 cat > $TEMPDIR/loop.stat <<EOF
-data list /x 1 y 2 z 3.
+data list /x 1 y 2 zoological 3.
 begin data.
 125
 256
 397
 401
 end data.
-loop i=y to z by abs(z-y)/(z-y).
-print /x i.
+loop iterative_Variable=y to zoological by abs(zoological-y)/(zoological-y).
+print /x iterative_Variable.
 break.         /* Generates warning.
 end loop.
 execute.
@@ -63,7 +64,7 @@ EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="run program"
-$here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/loop.stat > $TEMPDIR/stdout
+$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/loop.stat > $TEMPDIR/stdout
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="compare stdout"
@@ -80,7 +81,7 @@ diff -B -b $TEMPDIR/pspp.list  - <<EOF
 #========#======#=======#======#
 |X       |     1|  1-  1|F1.0  |
 |Y       |     1|  2-  2|F1.0  |
-|Z       |     1|  3-  3|F1.0  |
+|ZOOLOGIC|     1|  3-  3|F1.0  |
 +--------+------+-------+------+
 1     2.00 
 2     5.00