Checkin of new directory structure.
[pspp-builds.git] / tests / bugs / double-frequency.sh
1 #!/bin/sh
2
3 # This program tests for a bug where pspp would crash if two frequencies
4 # Commands existed in a input file
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
14 # ensure that top_srcdir is absolute
15 top_srcdir=`cd $top_srcdir; pwd`
16
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
55 activity="create data"
56 cat << EOF > $TEMPDIR/ff.stat 
57
58 data list free /v1 v2.
59 begin data.
60 0 1
61 2 3 
62 4 5
63 3 4
64 end data.
65
66 frequencies v1 v2.
67 frequencies v1 v2.
68 EOF
69 if [ $? -ne 0 ] ; then no_result ; fi
70
71
72 cd $TEMPDIR
73
74 activity="run data"
75 $SUPERVISOR $top_builddir/src/pspp  $TEMPDIR/ff.stat
76 if [ $? -ne 0 ] ; then fail ; fi
77
78
79 pass;