Checkin of new directory structure.
[pspp-builds.git] / tests / command / loop.sh
1 #!/bin/sh
2
3 # This program tests the LOOP command
4
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
7
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
13 # ensure that top_srcdir is absolute
14 top_srcdir=`cd $top_srcdir; pwd`
15
16 STAT_CONFIG_PATH=$top_srcdir/config
17 export STAT_CONFIG_PATH
18
19
20 cleanup()
21 {
22      cd /
23      rm -rf $TEMPDIR
24 }
25
26
27 fail()
28 {
29     echo $activity
30     echo FAILED
31     cleanup;
32     exit 1;
33 }
34
35
36 no_result()
37 {
38     echo $activity
39     echo NO RESULT;
40     cleanup;
41     exit 2;
42 }
43
44 pass()
45 {
46     cleanup;
47     exit 0;
48 }
49
50 mkdir -p $TEMPDIR
51
52 cd $TEMPDIR
53
54 activity="create prog"
55 cat > $TEMPDIR/loop.stat <<EOF
56 data list /X 1 Y 2 ZOOLOGICAL 3.
57 begin data.
58 125
59 256
60 397
61 401
62 end data.
63 loop iterative_Variable=y to zoological by abs(zoological-y)/(zoological-y).
64 print /x iterative_Variable.
65 break.          /* Generates warning.
66 end loop.
67 execute.
68 EOF
69 if [ $? -ne 0 ] ; then no_result ; fi
70
71 activity="run program"
72 $SUPERVISOR $top_builddir/src/pspp --testing-mode -o raw-ascii $TEMPDIR/loop.stat > $TEMPDIR/stdout
73 if [ $? -ne 0 ] ; then no_result ; fi
74
75 activity="compare stdout"
76 perl -pi -e 's/^\s*$//g' $TEMPDIR/stdout
77 diff -b $TEMPDIR/stdout  - <<EOF
78 EOF
79 if [ $? -ne 0 ] ; then fail ; fi
80
81 activity="compare results"
82 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
83 diff  -b $TEMPDIR/pspp.list  - <<EOF
84 1.1 DATA LIST.  Reading 1 record from INLINE.
85 +----------+------+-------+------+
86 | Variable |Record|Columns|Format|
87 #==========#======#=======#======#
88 |X         |     1|  1-  1|F1.0  |
89 |Y         |     1|  2-  2|F1.0  |
90 |ZOOLOGICAL|     1|  3-  3|F1.0  |
91 +----------+------+-------+------+
92 1     2.00 
93 2     5.00 
94 3     9.00 
95 4      .00 
96 EOF
97 if [ $? -ne 0 ] ; then fail ; fi
98
99
100 pass;