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
57 activity="Create File 1"
59 title 'Test COUNT transformation'.
61 * we're going to count the 2s 4s and 1s in the data
62 data list /V1 to V2 1-4(a).
68 1104 ---- this is not '4', but '04' (v1 and v2 are string format )
72 count C=v1 to v2('2',' 4','1').
75 if [ $? -ne 0 ] ; then no_result ; fi
79 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
80 if [ $? -ne 0 ] ; then no_result ; fi
83 activity="compare results 1"
84 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
85 diff -b $TEMPDIR/pspp.list - <<EOF
86 1.1 DATA LIST. Reading 1 record from INLINE.
87 +--------+------+-------+------+
88 |Variable|Record|Columns|Format|
89 #========#======#=======#======#
92 +--------+------+-------+------+
103 if [ $? -ne 0 ] ; then no_result ; fi
108 activity="Create file 2"
109 cat > $TESTFILE <<EOF
110 data list list /x * y *.
123 if [ $? -ne 0 ] ; then no_result ; fi
126 activity="Run pspp 2"
127 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
128 if [ $? -ne 0 ] ; then no_result ; fi
131 activity="compare results"
132 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
133 diff -b $TEMPDIR/pspp.list - <<EOF
134 1.1 DATA LIST. Reading free-form data from INLINE.
142 -------- -------- --------
149 if [ $? -ne 0 ] ; then fail ; fi