dc3043506c076d1847523ac339772189da0ae1ae
[pspp-builds.git] / tests / command / autorecod.sh
1 #!/bin/sh
2
3 # This program tests the autorecode command
4
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
7
8
9 here=`pwd`;
10
11 # ensure that top_srcdir is absolute
12 cd $top_srcdir; top_srcdir=`pwd`
13
14 STAT_CONFIG_PATH=$top_srcdir/config
15 export STAT_CONFIG_PATH
16
17
18 cleanup()
19 {
20      cd /
21      rm -rf $TEMPDIR
22 }
23
24
25 fail()
26 {
27     echo $activity
28     echo FAILED
29     cleanup;
30     exit 1;
31 }
32
33
34 no_result()
35 {
36     echo $activity
37     echo NO RESULT;
38     cleanup;
39     exit 2;
40 }
41
42 pass()
43 {
44     cleanup;
45     exit 0;
46 }
47
48 mkdir -p $TEMPDIR
49
50 cd $TEMPDIR
51
52 activity="create program"
53 cat > $TESTFILE <<EOF
54 /* Tries AUTORECODE on some random but similar strings of characters.
55 data list /X 1-5(a) Y 7.
56 begin data.
57 lasdj 1 1                                                           3
58 asdfk 0 3 <---- These are the numbers that should be produced for a 4
59 asdfj 2 4                                                           2
60 asdfj 1 4                                                           3
61 asdfk 2 3                                                           2
62 asdfj 9 4                                                           1
63 lajks 9 2                                                           1
64 asdfk 0 3 These are the numbers that should be produced for b ----> 4
65 asdfk 1 3                                                           3
66 end data.
67
68 autorecode x y into A B/descend.
69
70 list.
71 /* Just to make sure it works on second & subsequent executions,
72 /* try it again.
73 compute Z=trunc(y/2).
74 autorecode z into W.
75 list.
76 EOF
77 if [ $? -ne 0 ] ; then no_result ; fi
78
79 activity="run program"
80 $SUPERVISOR $here/../src/pspp    -o raw-ascii $TESTFILE
81 if [ $? -ne 0 ] ; then no_result ; fi
82
83 activity="test output"
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 #========#======#=======#======#
90 |X       |     1|  1-  5|A5    |
91 |Y       |     1|  7-  7|F1.0  |
92 +--------+------+-------+------+
93     X Y        A        B
94 ----- - -------- --------
95 lasdj 1     1.00     3.00 
96 asdfk 0     3.00     4.00 
97 asdfj 2     4.00     2.00 
98 asdfj 1     4.00     3.00 
99 asdfk 2     3.00     2.00 
100 asdfj 9     4.00     1.00 
101 lajks 9     2.00     1.00 
102 asdfk 0     3.00     4.00 
103 asdfk 1     3.00     3.00 
104     X Y        A        B        Z        W
105 ----- - -------- -------- -------- --------
106 lasdj 1     1.00     3.00      .00     1.00 
107 asdfk 0     3.00     4.00      .00     1.00 
108 asdfj 2     4.00     2.00     1.00     2.00 
109 asdfj 1     4.00     3.00      .00     1.00 
110 asdfk 2     3.00     2.00     1.00     2.00 
111 asdfj 9     4.00     1.00     4.00     3.00 
112 lajks 9     2.00     1.00     4.00     3.00 
113 asdfk 0     3.00     4.00      .00     1.00 
114 asdfk 1     3.00     3.00      .00     1.00 
115 EOF
116 if [ $? -ne 0 ] ; then fail ; fi
117
118 pass
119
120
121