3 # This program tests that compressed system files can be read and written
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
8 # ensure that top_srcdir and top_builddir are absolute
9 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
10 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
11 top_srcdir=`cd $top_srcdir; pwd`
12 top_builddir=`cd $top_builddir; pwd`
13 PSPP=$top_builddir/src/ui/terminal/pspp
15 STAT_CONFIG_PATH=$top_srcdir/config
16 export STAT_CONFIG_PATH
21 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
22 echo "NOT cleaning $TEMPDIR"
58 DATA LIST LIST /x * y (a200).
60 1.2 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
62 0 ddddddddddddddddddddddddddddddd
66 SAVE OUTFILE='$TEMPDIR/com.sav' /COMPRESS .
68 GET FILE='$TEMPDIR/com.sav'.
73 if [ $? -ne 0 ] ; then no_result ; fi
76 activity="run program"
77 $SUPERVISOR $PSPP --testing-mode $TESTFILE
78 if [ $? -ne 0 ] ; then fail ; fi
80 # Make sure the file really was compressed
81 activity="inspect system file"
82 dd if=$TEMPDIR/com.sav bs=1 skip=72 count=4 2> /dev/null | od > $TEMPDIR/file
83 if [ $? -ne 0 ] ; then no_result ; fi
85 activity="check compression setting"
87 diff -b $TEMPDIR/file - > /dev/null <<EOF
91 if [ $? -ne 0 ] ; then pass ; fi
93 diff -b $TEMPDIR/file - > /dev/null <<EOF
97 if [ $? -ne 0 ] ; then pass ; fi