X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ftrimmed-mean.sh;h=8e51c0b2b8cf043ad141877b276cc910929826c5;hb=a37754c18dee3d5941e5fe041b2c1fa1a3370157;hp=a5d74e1251338f04293d1991dae0305050a95818;hpb=44d7b18d5c3d0a806fe1a29658445254f2376600;p=pspp-builds.git diff --git a/tests/command/trimmed-mean.sh b/tests/command/trimmed-mean.sh index a5d74e12..8e51c0b2 100755 --- a/tests/command/trimmed-mean.sh +++ b/tests/command/trimmed-mean.sh @@ -6,14 +6,21 @@ 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` STAT_CONFIG_PATH=$top_srcdir/config export STAT_CONFIG_PATH +LANG=C +export LANG + cleanup() { @@ -70,20 +77,20 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE +$SUPERVISOR $PSPP -o raw-ascii $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" -diff -b -B $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 $TEMPDIR/pspp.list - << EOF +1.1 DATA LIST. Reading free-form data from INLINE. +--------+------+ |Variable|Format| #========#======# |X |F8.0 | |C |F8.0 | +--------+------+ - 2.1 EXAMINE. Case Processing Summary #=#===============================# # # Cases # @@ -94,26 +101,24 @@ diff -b -B $TEMPDIR/pspp.list - << EOF #=#==#=======#=#=======#==#=======# #X#52| 100%|0| 0%|52| 100%# #=#==#=======#=#=======#==#=======# - 2.2 EXAMINE. Descriptives -#============================================#=========#==========# -# #Statistic|Std. Error# -#============================================#=========#==========# -#XMean # 2.02 | .034 # -# 95% Confidence Interval for MeanLower Bound# 2.021 | # -# Upper Bound# 2.017 | # -# 5% Trimmed Mean # 2.00 | # -# Median # 2.00 | # -# Variance # .058 | # -# Std. Deviation # .242 | # -# Minimum # 1.000 | # -# Maximum # 3.000 | # -# Range # 2.000 | # -# Interquartile Range # .00 | # -# Skewness # 1.194 | .330 # -# Kurtosis # 15.732 | .650 # -#============================================#=========#==========# - +#==============================================#=========#==========# +# #Statistic|Std. Error# +#==============================================#=========#==========# +#X Mean # 2.02 | .034 # +# 95% Confidence Interval for Mean Lower Bound# 2.021 | # +# Upper Bound# 2.017 | # +# 5% Trimmed Mean # 2.00 | # +# Median # 2.00 | # +# Variance # .058 | # +# Std. Deviation # .242 | # +# Minimum # 1.000 | # +# Maximum # 3.000 | # +# Range # 2.000 | # +# Interquartile Range # .00 | # +# Skewness # 1.194 | .330 # +# Kurtosis # 15.732 | .650 # +#==============================================#=========#==========# EOF if [ $? -ne 0 ] ; then fail ; fi