3 # This program tests for a bug where the FREQUENCIES command would
4 # crash if given an alphanumeric variable
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
52 cat > $TEMPDIR/prog.sps <<EOF
54 name (A8) value * quantity .
60 FREQUENCIES /VAR = name.
63 if [ $? -ne 0 ] ; then no_result ; fi
66 $SUPERVISOR $here/../src/pspp $TEMPDIR/prog.sps
67 if [ $? -ne 0 ] ; then fail ; fi