Changed the default value od SCOMPRESS to true.
[pspp-builds.git] / tests / command / t-test-indep-missing-anal.sh
1 #!/bin/sh
2
3 # This program tests that the T-TEST /GROUPS command works OK
4 # when ANALYSIS missing values are involved
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 1"
57 cat > $TESTFILE <<EOF
58 data list list /id * indep * dep1 * dep2 *.
59 begin data.
60 1  1.0 3.5 6
61 2  1.0 2.0 5
62 3  1.0 2.0 4
63 4  2.0 3.5 3
64 56 2.0 3.0 1
65 end data.
66
67 t-test /group=indep /var=dep1, dep2.
68 EOF
69 if [ $? -ne 0 ] ; then no_result ; fi
70
71
72 activity="run program 1"
73 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
74 if [ $? -ne 0 ] ; then no_result ; fi
75
76 activity="copy output"
77 cp $TEMPDIR/pspp.list $TEMPDIR/ref.list
78 if [ $? -ne 0 ] ; then no_result ; fi
79
80 activity="create program 2"
81 cat > $TESTFILE <<EOF
82 data list list /id * indep * dep1 * dep2.
83 begin data.
84 1 1.0 3.5 6
85 2 1.0 2.0 5
86 3 1.0 2.0 4
87 4 2.0 3.5 3
88 5 2.0 3.0 .
89 6 2.0 .   1
90 7  .  3.1 5
91 end data.
92
93 * Note that if the independent variable is missing, then it's implicitly 
94 * listwise missing.
95
96 t-test /missing=analysis /group=indep /var=dep1 dep2.
97 EOF
98 if [ $? -ne 0 ] ; then no_result ; fi
99
100 activity="run program 2"
101 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
102 if [ $? -ne 0 ] ; then no_result ; fi
103
104
105 activity="compare outputs"
106 diff $TEMPDIR/ref.list $TEMPDIR/pspp.list 
107 if [ $? -ne 0 ] ; then fail ; fi
108
109
110 pass