3 # This program tests the count transformation
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
8 # ensure that top_builddir are absolute
9 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
10 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
11 top_builddir=`cd $top_builddir; pwd`
12 PSPP=$top_builddir/src/ui/terminal/pspp
14 # ensure that top_srcdir is absolute
15 top_srcdir=`cd $top_srcdir; pwd`
17 STAT_CONFIG_PATH=$top_srcdir/config
18 export STAT_CONFIG_PATH
56 title 'Test COUNT transformation'.
58 * we're going to count the 2s 4s and 1s in the data
59 data list /V1 to V2 1-4(a).
65 1104 ---- this is not '4', but '04' (v1 and v2 are string format )
69 count C=v1 to v2('2',' 4','1').
72 if [ $? -ne 0 ] ; then no_result ; fi
75 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
76 if [ $? -ne 0 ] ; then no_result ; fi
79 activity="compare results"
80 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
81 diff -b $TEMPDIR/pspp.list - <<EOF
82 1.1 DATA LIST. Reading 1 record from INLINE.
83 +--------+------+-------+------+
84 |Variable|Record|Columns|Format|
85 #========#======#=======#======#
88 +--------+------+-------+------+
99 if [ $? -ne 0 ] ; then no_result ; fi