Implemented long variable names a la spss V12.
[pspp-builds.git] / tests / command / loop.sh
index 15f43ec738d7914a71f7a22dfc815b73814ff455..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.
@@ -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