X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fbugs%2Ftemp-freq.sh;h=2e884f6be493eba2bffb501944b487153d304277;hb=65a4e29574b67921ea899b6a1d45806dca11db00;hp=d2c1061432d5e815b9a70195ec7ee5109fb4354e;hpb=53a77fc6d950849af8fa98e89a6e9cb6d1281891;p=pspp diff --git a/tests/bugs/temp-freq.sh b/tests/bugs/temp-freq.sh index d2c1061432..2e884f6be4 100755 --- a/tests/bugs/temp-freq.sh +++ b/tests/bugs/temp-freq.sh @@ -6,16 +6,22 @@ TEMPDIR=/tmp/pspp-tst-$$ TESTFILE=$TEMPDIR/`basename $0`.sps -here=`pwd`; +# ensure that top_builddir are absolute +if [ -z "$top_builddir" ] ; then top_builddir=. ; fi +if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi +top_builddir=`cd $top_builddir; pwd` +PSPP=$top_builddir/src/ui/terminal/pspp # ensure that top_srcdir is absolute -cd $top_srcdir; top_srcdir=`pwd` +top_srcdir=`cd $top_srcdir; pwd` -export STAT_CONFIG_PATH=$top_srcdir/config +STAT_CONFIG_PATH=$top_srcdir/config +export STAT_CONFIG_PATH cleanup() { + cd / rm -rf $TEMPDIR } @@ -70,18 +76,18 @@ FINISH EOF if [ $? -ne 0 ] ; then no_result ; fi -$SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE +$SUPERVISOR $PSPP -o raw-ascii $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi -diff -b -B -w $TEMPDIR/pspp.list - << EOF -1.1 DATA LIST. Reading free-form data from the command file. +perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list +diff -b -w $TEMPDIR/pspp.list - << EOF +1.1 DATA LIST. Reading free-form data from INLINE. +--------+------+ |Variable|Format| #========#======# |SEX |A1 | |X |F8.0 | +--------+------+ - 2.1 FREQUENCIES. X: +-----------+--------+---------+--------+--------+--------+ | | | | | Valid | Cum | @@ -94,7 +100,6 @@ diff -b -B -w $TEMPDIR/pspp.list - << EOF #===========#========#=========#========#========#========# | Total| 4| 100.0| 100.0| | +--------------------+---------+--------+--------+--------+ - +---------------+------+ |N Valid | 4| | Missing| 0| @@ -103,7 +108,6 @@ diff -b -B -w $TEMPDIR/pspp.list - << EOF |Minimum |12.000| |Maximum |31.000| +---------------+------+ - EOF if [ $? -ne 0 ] ; then fail ; fi