3 TEMPDIR=/tmp/pspp-tst-$$
5 # ensure that top_builddir are absolute
6 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
7 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
8 top_builddir=`cd $top_builddir; pwd`
9 PSPP=$top_builddir/src/ui/terminal/pspp
11 # ensure that top_srcdir is absolute
12 top_srcdir=`cd $top_srcdir; pwd`
14 STAT_CONFIG_PATH=$top_srcdir/config
15 export STAT_CONFIG_PATH
52 activity="generate data input file"
53 $PERL -e 'print pack "n", $_ foreach 0...65535' > ib-in.data
55 activity="write pspp syntax"
56 cat > ib-in.pspp <<'EOF'
61 FILE HANDLE data/NAME='ib-in.data'/MODE=IMAGE/LRECL=2.
62 DATA LIST FILE=data/ib 1-2 (IB) pib 1-2 (PIB) pibhex 1-2 (PIBHEX).
63 COMPUTE x=$CASENUM - 1.
64 PRINT OUTFILE='ib-in.out'/x (PIBHEX4) ' ' ib pib pibhex.
67 if [ $? -ne 0 ] ; then no_result ; fi
69 activity="run program"
70 $SUPERVISOR $PSPP --testing-mode ib-in.pspp
71 if [ $? -ne 0 ] ; then no_result ; fi
73 activity="gunzip expected results"
74 gzip -cd < $top_srcdir/tests/formats/ib-in.expected.cmp.gz > ib-in.expected.cmp
75 if [ $? -ne 0 ] ; then no_result ; fi
77 activity="decompress expected results"
78 $PERL -pe "printf ' %04X ', $.-1" < ib-in.expected.cmp > ib-in.expected
79 if [ $? -ne 0 ] ; then no_result ; fi
81 activity="compare output"
82 diff -u ib-in.expected ib-in.out
83 if [ $? -ne 0 ] ; then fail ; fi