3 # This program tests that PSPP ignores the first line of a PSPP syntax
4 # file that begins with #!, without issuing an error (bug #26518).
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
9 # ensure that top_srcdir and top_builddir are absolute
10 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
11 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
12 top_srcdir=`cd $top_srcdir; pwd`
13 top_builddir=`cd $top_builddir; pwd`
15 PSPP=$top_builddir/src/ui/terminal/pspp
17 STAT_CONFIG_PATH=$top_srcdir/config
18 export STAT_CONFIG_PATH
23 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
24 echo "NOT cleaning $TEMPDIR"
59 cat > $TESTFILE << EOF
61 DATA LIST LIST NOTABLE /a.
68 if [ $? -ne 0 ] ; then no_result ; fi
71 activity="run program"
72 $SUPERVISOR $PSPP -o pspp.csv -e /dev/null $TESTFILE
73 if [ $? -ne 0 ] ; then fail ; fi
76 activity="compare output"
77 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.csv
78 diff -b -w $TEMPDIR/pspp.csv - << EOF
84 if [ $? -ne 0 ] ; then fail ; fi