3 # This program tests for bug #26739, which caused CROSSTABS to crash
4 # or to fail to output chi-square results.
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
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
15 # ensure that top_srcdir is absolute
16 top_srcdir=`cd $top_srcdir; pwd`
18 STAT_CONFIG_PATH=$top_srcdir/config
19 export STAT_CONFIG_PATH
26 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
27 echo "NOT cleaning $TEMPDIR"
62 activity="create program"
64 DATA LIST LIST /x * y *.
77 if [ $? -ne 0 ] ; then no_result ; fi
79 $SUPERVISOR $PSPP --testing-mode $TESTFILE
80 if [ $? -ne 0 ] ; then no_result ; fi
83 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
84 diff -b -w $TEMPDIR/pspp.list - << EOF
85 1.1 DATA LIST. Reading free-form data from INLINE.
92 2.1 CROSSTABS. Summary.
93 #===============#=====================================================#
95 # #-----------------+-----------------+-----------------#
96 # # Valid | Missing | Total #
97 # #--------+--------+--------+--------+--------+--------#
98 # # N| Percent| N| Percent| N| Percent#
99 #---------------#--------+--------+--------+--------+--------+--------#
100 #x * y # 4| 100.0%| 0| 0.0%| 4| 100.0%#
101 #===============#========#========#========#========#========#========#
102 2.2 CROSSTABS. x * y [count].
103 #===============#=================#========#
105 # #--------+--------+ #
106 # x# 1.00| 2.00| Total #
107 #---------------#--------+--------+--------#
108 # 2.00# .0| 1.0| 1.0#
109 # 3.00# 1.0| .0| 1.0#
110 # 4.00# 1.0| 1.0| 2.0#
111 #Total # 2.0| 2.0| 4.0#
112 #===============#========#========#========#
113 2.3 CROSSTABS. Chi-square tests.
114 #===============#========#========#========#
115 #Statistic # Value| df| Asymp.#
119 #---------------#--------+--------+--------#
120 #Pearson # 2.00| 2| .37#
122 #Likelihood # 2.77| 2| .25#
124 #Linear-by-Linea# .27| 1| .60#
125 #r Association # | | #
128 #===============#========#========#========#
130 if [ $? -ne 0 ] ; then fail ; fi