3 # This program tests for a bug where pspp would crash
4 # when a FREQUENCIES command was used with the html
8 TEMPDIR=/tmp/pspp-tst-$$
9 TESTFILE=$TEMPDIR/`basename $0`.sps
11 # ensure that top_builddir are absolute
12 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
13 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
14 top_builddir=`cd $top_builddir; pwd`
15 PSPP=$top_builddir/src/ui/terminal/pspp
17 # ensure that top_srcdir is absolute
18 cd $top_srcdir ; top_srcdir=`pwd`
20 STAT_CONFIG_PATH=$top_srcdir/config
21 export STAT_CONFIG_PATH
56 activity="create data"
57 cat << EOF > $TESTFILE
59 data list free /v1 v2.
71 if [ $? -ne 0 ] ; then no_result ; fi
76 $SUPERVISOR $PSPP -o html $TESTFILE
77 if [ $? -ne 0 ] ; then fail ; fi