47ee7bcdefb6728ae62c1138350be7002ea893fb
[pspp-builds.git] / tests / command / count.sh
1 #!/bin/sh
2
3 # This program tests the count transformation
4
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
7
8 here=`pwd`;
9
10 # ensure that top_srcdir is absolute
11 cd $top_srcdir; top_srcdir=`pwd`
12
13 STAT_CONFIG_PATH=$top_srcdir/config
14 export STAT_CONFIG_PATH
15
16
17 cleanup()
18 {
19      cd /
20      rm -rf $TEMPDIR
21 }
22
23
24 fail()
25 {
26     echo $activity
27     echo FAILED
28     cleanup;
29     exit 1;
30 }
31
32
33 no_result()
34 {
35     echo $activity
36     echo NO RESULT;
37     cleanup;
38     exit 2;
39 }
40
41 pass()
42 {
43     cleanup;
44     exit 0;
45 }
46
47 mkdir -p $TEMPDIR
48
49 cd $TEMPDIR
50
51 cat > $TESTFILE <<EOF
52 title 'Test COUNT transformation'.
53
54 * we're going to count the 2s 4s and 1s in the data
55 data list /V1 to V2 1-4(a).
56 begin data.
57 1234
58 321      <----
59 2 13     <----
60 4121
61 1104     ---- this is not '4', but '04' (v1 and v2 are string format )
62 03 4     <----
63 0193
64 end data.
65 count C=v1 to v2('2',' 4','1').
66 list.
67 EOF
68 if [ $? -ne 0 ] ; then no_result ; fi
69
70
71 $SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE
72 if [ $? -ne 0 ] ; then no_result ; fi
73
74
75 activity="compare results"
76 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
77 diff -b  $TEMPDIR/pspp.list - <<EOF
78 1.1 DATA LIST.  Reading 1 record from INLINE.
79 +--------+------+-------+------+
80 |Variable|Record|Columns|Format|
81 #========#======#=======#======#
82 |V1      |     1|  1-  2|A2    |
83 |V2      |     1|  3-  4|A2    |
84 +--------+------+-------+------+
85 V1 V2        C
86 -- -- --------
87 12 34      .00 
88 32 1      1.00 
89 2  13     1.00 
90 41 21      .00 
91 11 04      .00 
92 03  4     1.00 
93 01 93      .00 
94 EOF
95 if [ $? -ne 0 ] ; then no_result ; fi
96
97
98 pass;