(main): When testing mode is enabled, use a built-in output driver
[pspp-builds.git] / tests / bugs / agg-crash-2.sh
1 #!/bin/sh
2
3 # This program tests for a bug which caused AGGREGATE to crash when
4 # the MAX function was used.
5
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
8
9 # ensure that top_builddir  are absolute
10 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
11 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
12 top_builddir=`cd $top_builddir; pwd`
13 PSPP=$top_builddir/src/ui/terminal/pspp
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 /X (F8.2) Y (a25).
59
60 BEGIN DATA.
61 87.50 foo
62 87.34 bar
63 1 bar
64 END DATA.
65
66
67
68 AGGREGATE OUTFILE=* /BREAK=y /X=MAX(x).
69 LIST /x y.
70 EOF
71 if [ $? -ne 0 ] ; then no_result ; fi
72
73 $SUPERVISOR $PSPP --testing-mode $TESTFILE
74 if [ $? -ne 0 ] ; then no_result ; fi
75
76 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
77 diff -b  -w $TEMPDIR/pspp.list - << EOF
78 1.1 DATA LIST.  Reading free-form data from INLINE.
79 +--------+------+
80 |Variable|Format|
81 #========#======#
82 |X       |F8.2  |
83 |Y       |A25   |
84 +--------+------+
85         X                         Y
86 --------- -------------------------
87     87.34 bar                       
88     87.50 foo                       
89 EOF
90 if [ $? -ne 0 ] ; then fail ; fi
91
92 pass;