Changed test file name from 'foo.sps' to $TESTFILE (which is based
authorJohn Darrington <john@darrington.wattle.id.au>
Mon, 27 Aug 2007 07:19:18 +0000 (07:19 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Mon, 27 Aug 2007 07:19:18 +0000 (07:19 +0000)
on the script name).

tests/bugs/big-input.sh
tests/bugs/case-map.sh
tests/bugs/comment-at-eof.sh
tests/bugs/compute-fmt.sh
tests/bugs/terminate.sh

index 9e133556a3b7b0d490da3900557a2db3fa59c279..8cec3c619635e413bf1cc84b93de402a92113b08 100755 (executable)
@@ -55,7 +55,7 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/foo.sps <<EOF
+cat > $TESTFILE <<EOF
 INPUT PROGRAM.
        LOOP #I=1 TO 50000.
                COMPUTE X=NORMAL(10).
@@ -71,7 +71,7 @@ EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="run program"
-$SUPERVISOR $PSPP --testing-mode -e /dev/null $TEMPDIR/foo.sps 
+$SUPERVISOR $PSPP --testing-mode -e /dev/null $TESTFILE
 if [ $? -ne 0 ] ; then fail ; fi
 
 pass;
index acc19dcfc3cc5bd9d1ade0e3ae7c7881135c9ed7..ab9971f0f3f9b81f39398cd38286f341089f5d90 100755 (executable)
@@ -55,7 +55,7 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/foo.sps <<EOF
+cat > $TESTFILE <<EOF
 INPUT PROGRAM.
     COMPUTE #I = 1.
     COMPUTE X = #I.
@@ -68,7 +68,7 @@ EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="run program"
-$SUPERVISOR $PSPP --testing-mode -e /dev/null $TEMPDIR/foo.sps
+$SUPERVISOR $PSPP --testing-mode -e /dev/null $TESTFILE
 if [ $? -ne 0 ] ; then fail ; fi
 
 pass;
index 638347482325983ec4e87310b73d36627e0f8853..6122e6605100f75099d0857a768089d6a8d5c2e8 100755 (executable)
@@ -54,12 +54,12 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/foo.sps <<EOF
+cat > $TESTFILE <<EOF
 COMMENT this is a comment at end of file.
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
-$SUPERVISOR $PSPP --testing-mode $TEMPDIR/foo.sps
+$SUPERVISOR $PSPP --testing-mode $TESTFILE
 if [ $? -ne 0 ] ; then fail; fi
 
 pass;
index 2626b59521e8dff178ed0f664ea31c4315de3311..1d898dba19474bc599d143726adde2531f515dc2 100755 (executable)
@@ -55,7 +55,7 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/foo.sps <<EOF
+cat > $TESTFILE <<EOF
 INPUT PROGRAM.
        COMPUTE num = 3.
 END FILE.
@@ -66,7 +66,7 @@ SAVE outfile='$TEMPDIR/temp.sav'.
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
-$SUPERVISOR $PSPP --testing-mode $TEMPDIR/foo.sps
+$SUPERVISOR $PSPP --testing-mode $TESTFILE
 if [ $? -ne 0 ] ; then fail; fi
 
 
index ee3ffa878be161d3bc37a05275282d6b6f10c2a7..9f3a4955576a4d47dd9e305e691fef74edb3d535 100755 (executable)
@@ -57,7 +57,7 @@ rm -f $TEMPDIR/bar.dat
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="create program"
-cat > $TEMPDIR/foo.sps <<EOF
+cat > $TESTFILE <<EOF
 DATA LIST FILE='$TEMPDIR/bar.dat' /S 1-2 (A) X 3 .
 
 EXECUTE.
@@ -66,7 +66,7 @@ if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="run program"
 # This must exit with non zero status
-$SUPERVISOR $here/../src/pspp -o raw-ascii -e /dev/null $TEMPDIR/foo.sps 2> $TEMPDIR/stderr
+$SUPERVISOR $here/../src/pspp -o raw-ascii -e /dev/null $TESTFILE 2> $TEMPDIR/stderr
 if [ $? -eq 0 ] ; then fail ; fi
 
 activity="compare stderr"