3 # Tests random distribution functions.
5 TEMPDIR=/tmp/pspp-tst-$$
9 # ensure that top_srcdir is absolute
10 cd $top_srcdir; top_srcdir=`pwd`
12 STAT_CONFIG_PATH=$top_srcdir/config
13 export STAT_CONFIG_PATH
18 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
19 echo NOT removing directory $TEMPDIR
53 activity="run script to generate random distribution test command file"
54 perl $top_srcdir/tests/expressions/randist/randist.pl \
55 < $top_srcdir/tests/expressions/randist/randist.txt \
57 if [ $? -ne 0 ] ; then no_result ; fi
59 activity="run command file"
60 $SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii \
61 $TEMPDIR/randist.pspp >$TEMPDIR/randist.err 2> $TEMPDIR/randist.out
62 if [ $? -ne 0 ] ; then fail ; fi
64 for d in beta cauchy chisq exp f gamma laplace logistic lnormal \
65 normal pareto t uniform weibull; do
66 activity="compare output for $d distribution"
67 perl -pi -e 's/^\s*$//g' $top_srcdir/tests/expressions/randist/$d.out $TEMPDIR/$d.out
68 diff -b $top_srcdir/tests/expressions/randist/$d.out $TEMPDIR/$d.out
69 if [ $? -ne 0 ] ; then fail ; fi