Changed call to nl_langinfo with localecharset (from gnulib).
[pspp-builds.git] / tests / command / t-test-1-sample-missing-anal.sh
1 #!/bin/sh
2
3 # This program tests that the T-TEST /TESTVAL command works OK
4 # when there are per analysis missing values 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 * x1 * x2.
59 begin data.
60 1 3.5 34
61 2 2.0 10
62 3 2.0 23
63 4 3.5 98
64 5 3.0 23
65 67 4.0 8
66 end data.
67
68 t-test /testval=3.0 /var=x1 x2.
69 EOF
70 if [ $? -ne 0 ] ; then no_result ; fi
71
72
73 activity="run program 1"
74 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
75 if [ $? -ne 0 ] ; then no_result ; fi
76
77 activity="copy output"
78 cp $TEMPDIR/pspp.list $TEMPDIR/ref.list
79 if [ $? -ne 0 ] ; then no_result ; fi
80
81
82 activity="create program 2"
83 cat > $TESTFILE <<EOF
84 data list list /id * x1 * x2.
85 begin data.
86 1 3.5 34
87 2 2.0 10
88 3 2.0 23
89 4 3.5 98
90 5 3.0 23
91 6 4.0 .
92 7  .  8
93 end data.
94
95 t-test /missing=analysis /testval=3.0 /var=x1 x2.
96 EOF
97 if [ $? -ne 0 ] ; then no_result ; fi
98
99 activity="run program 2"
100 $SUPERVISOR $PSPP -o raw-ascii $TESTFILE
101 if [ $? -ne 0 ] ; then no_result ; fi
102
103 activity="compare outputs"
104 diff $TEMPDIR/ref.list $TEMPDIR/pspp.list
105 if [ $? -ne 0 ] ; then fail ; fi
106
107
108 pass