3 # This program tests for a bug which caused a crash when
4 # reading invalid INPUT PROGRAM syntax.
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
11 # ensure that top_srcdir is absolute
12 cd $top_srcdir; top_srcdir=`pwd`
14 STAT_CONFIG_PATH=$top_srcdir/config
15 export STAT_CONFIG_PATH
20 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
21 echo "NOT cleaning $TEMPDIR"
57 activity="create test program"
67 if [ $? -ne 0 ] ; then no_result ; fi
70 # The above syntax is invalid, so this program should fail to parse
71 activity="run program"
72 $SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TESTFILE > /dev/null
73 if [ $? -ne 1 ] ; then fail ; fi