3 # This program tests that system files can be read and written
4 # including the long variable names.
7 TEMPDIR=/tmp/pspp-tst-$$
8 TESTFILE=$TEMPDIR/`basename $0`.sps
10 # ensure that top_builddir are absolute
11 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
12 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
13 top_builddir=`cd $top_builddir; pwd`
15 # ensure that top_srcdir is absolute
16 top_srcdir=`cd $top_srcdir; pwd`
18 STAT_CONFIG_PATH=$top_srcdir/config
19 export STAT_CONFIG_PATH
56 activity="create program"
58 DATA LIST LIST NOTABLE / variable001 * variable002 * variable003 * variable004 * .
70 SAVE /OUTFILE='$TEMPDIR/foo.sav'.
72 GET /FILE='$TEMPDIR/foo.sav'.
77 if [ $? -ne 0 ] ; then no_result ; fi
80 activity="run program"
81 $SUPERVISOR $top_builddir/src/pspp -o raw-ascii $TESTFILE
82 if [ $? -ne 0 ] ; then no_result ; fi
84 activity="compare output"
85 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
86 diff -b -w $TEMPDIR/pspp.list - << EOF
87 variable001 variable002 variable003 variable004
88 ----------- ----------- ----------- -----------
98 if [ $? -ne 0 ] ; then fail ; fi