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`
14 PSPP=$top_builddir/src/ui/terminal/pspp
16 # ensure that top_srcdir is absolute
17 top_srcdir=`cd $top_srcdir; pwd`
19 STAT_CONFIG_PATH=$top_srcdir/config
20 export STAT_CONFIG_PATH
57 activity="create program"
59 DATA LIST LIST NOTABLE / variable001 * variable002 * variable003 * variable004 * .
71 SAVE /OUTFILE='$TEMPDIR/foo.sav'.
73 GET /FILE='$TEMPDIR/foo.sav'.
78 if [ $? -ne 0 ] ; then no_result ; fi
81 activity="run program"
82 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
83 if [ $? -ne 0 ] ; then no_result ; fi
85 activity="compare output"
86 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
87 diff -b -w $TEMPDIR/pspp.list - << EOF
88 variable001 variable002 variable003 variable004
89 ----------- ----------- ----------- -----------
99 if [ $? -ne 0 ] ; then fail ; fi