Fix tests broken by the new table widths, caused by previous change
[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 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
82 diff  -b $TEMPDIR/pspp.list - <<EOF
83 1.1 DATA LIST.  Reading free-form data from INLINE.
84 +--------+------+
85 |Variable|Format|
86 #========#======#
87 |ID      |F8.0  |
88 |ABC     |F8.0  |
89 +--------+------+
90 2.1 T-TEST.  One-Sample Statistics
91 #===#=#====#==============#=========#
92 #   #N|Mean|Std. Deviation|S.E. Mean#
93 #===#=#====#==============#=========#
94 #ABC#6|3.00|           .84|      .34#
95 #===#=#====#==============#=========#
96 2.2 T-TEST.  One-Sample Test
97 #===#===================================================#
98 #   #               Test Value = 2.000000               #
99 #   #----+--+---------------+---------------+-----------#
100 #   #    |  |               |               |    95%    #
101 #   #    |  |               |               +-----+-----#
102 #   #  t |df|Sig. (2-tailed)|Mean Difference|Lower|Upper#
103 #===#====#==#===============#===============#=====#=====#
104 #ABC#2.93| 5|            .03|           1.00|  .12| 1.88#
105 #===#====#==#===============#===============#=====#=====#
106 EOF
107 if [ $? -ne 0 ] ; then fail ; fi
108
109
110 pass