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 export STAT_CONFIG_PATH=$top_srcdir/config
20 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
21 echo "NOT cleaning $TEMPDIR"
56 DATA LIST LIST /x * y (a200).
58 1.2 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
60 0 ddddddddddddddddddddddddddddddd
64 SAVE OUTFILE='$TEMPDIR/com.sav' /COMPRESS .
66 GET FILE='$TEMPDIR/com.sav'.
71 if [ $? -ne 0 ] ; then no_result ; fi
74 activity="run program"
75 $SUPERVISOR $PSPP --testing-mode $TESTFILE
76 if [ $? -ne 0 ] ; then fail ; fi
78 # Make sure the file really was compressed
79 activity="inspect system file"
80 dd if=$TEMPDIR/com.sav bs=1 skip=72 count=4 2> /dev/null | od > $TEMPDIR/file
81 if [ $? -ne 0 ] ; then no_result ; fi
83 activity="check compression setting"
85 diff -b $TEMPDIR/file - > /dev/null <<EOF
89 if [ $? -ne 0 ] ; then pass ; fi
91 diff -b $TEMPDIR/file - > /dev/null <<EOF
95 if [ $? -ne 0 ] ; then pass ; fi