Rewrite PSPP output engine.
[pspp-builds.git] / tests / command / t-test-1s.sh
1 #!/bin/sh
2
3 # This program tests that the T-TEST /TESTVAL command works OK
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 PSPP=$top_builddir/src/ui/terminal/pspp
13
14 # ensure that top_srcdir is absolute
15 top_srcdir=`cd $top_srcdir; pwd`
16
17 STAT_CONFIG_PATH=$top_srcdir/config
18 export STAT_CONFIG_PATH
19
20
21 cleanup()
22 {
23      if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
24         echo "NOT cleaning $TEMPDIR" 
25         return ; 
26      fi
27      cd /
28      rm -rf $TEMPDIR
29 }
30
31
32 fail()
33 {
34     echo $activity
35     echo FAILED
36     cleanup;
37     exit 1;
38 }
39
40
41 no_result()
42 {
43     echo $activity
44     echo NO RESULT;
45     cleanup;
46     exit 2;
47 }
48
49 pass()
50 {
51     cleanup;
52     exit 0;
53 }
54
55 mkdir -p $TEMPDIR
56
57 cd $TEMPDIR
58
59 activity="create program"
60 cat > $TESTFILE <<EOF
61 data list list /ID * ABC *.
62 begin data.
63 1 3.5
64 2 2.0
65 3 2.0
66 4 3.5
67 5 3.0
68 6 4.0
69 end data.
70
71 t-test /testval=2.0 /var=abc.
72 EOF
73 if [ $? -ne 0 ] ; then no_result ; fi
74
75
76 activity="run program"
77 $SUPERVISOR $PSPP --testing-mode $TESTFILE
78 if [ $? -ne 0 ] ; then no_result ; fi
79
80 activity="compare output"
81 diff -c $TEMPDIR/pspp.csv - <<EOF
82 Table: Reading free-form data from INLINE.
83 Variable,Format
84 ID,F8.0
85 ABC,F8.0
86
87 Table: One-Sample Statistics
88 ,N,Mean,Std. Deviation,S.E. Mean
89 ABC,6,3.00,.84,.34
90
91 Table: One-Sample Test
92 ,Test Value = 2.000000,,,,,
93 ,,,,,95% Confidence Interval of the Difference,
94 ,t,df,Sig. (2-tailed),Mean Difference,Lower,Upper
95 ABC,2.93,5,.03,1.00,.12,1.88
96 EOF
97 if [ $? -ne 0 ] ; then fail ; fi
98
99
100 pass