Checkin of new directory structure.
[pspp-builds.git] / tests / bugs / match-files-scratch.sh
1 #!/bin/sh
2
3 # This program tests for a bug which caused MATCH FILES to crash
4 # when used with scratch variables.
5
6
7 TEMPDIR=/tmp/pspp-tst-$$
8 TESTFILE=$TEMPDIR/`basename $0`.pspp
9
10 # ensure that top_builddir  are absolute
11 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
12 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
13 top_builddir=`cd $top_builddir; pwd`
14
15 # ensure that top_srcdir is absolute
16 top_srcdir=`cd $top_srcdir; pwd`
17
18 STAT_CONFIG_PATH=$top_srcdir/config
19 export STAT_CONFIG_PATH
20
21
22 cleanup()
23 {
24      cd /
25      rm -rf $TEMPDIR
26 }
27
28
29 fail()
30 {
31     echo $activity
32     echo FAILED
33     cleanup;
34     exit 1;
35 }
36
37
38 no_result()
39 {
40     echo $activity
41     echo NO RESULT;
42     cleanup;
43     exit 2;
44 }
45
46 pass()
47 {
48     cleanup;
49     exit 0;
50 }
51
52 mkdir -p $TEMPDIR
53
54 cd $TEMPDIR
55
56 activity="create program"
57 cat > $TESTFILE <<EOF
58 DATA LIST LIST /w * x * y * .
59 BEGIN DATA
60 4 5 6
61 1 2 3
62 END DATA.
63
64 COMPUTE j=0.
65 LOOP #k = 1 to 10.
66 COMPUTE j=#k + j.
67 END LOOP.
68
69 MATCH FILES FILE=* /DROP=w.
70 LIST.
71 FINISH.
72
73 EOF
74 if [ $? -ne 0 ] ; then no_result ; fi
75
76 $SUPERVISOR $top_builddir/src/pspp -o raw-ascii $TESTFILE
77 if [ $? -ne 0 ] ; then no_result ; fi
78
79
80 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
81 diff -b  -w $TEMPDIR/pspp.list - << EOF
82 1.1 DATA LIST.  Reading free-form data from INLINE.
83 +--------+------+
84 |Variable|Format|
85 #========#======#
86 |w       |F8.0  |
87 |x       |F8.0  |
88 |y       |F8.0  |
89 +--------+------+
90        x        y        j
91 -------- -------- --------
92     5.00     6.00    55.00 
93     2.00     3.00    55.00 
94 EOF
95 if [ $? -ne 0 ] ; then fail ; fi
96
97 pass;