X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fexamine-extremes.sh;h=71d7d27982f9d6e8ea72d776299dc8479bbf2a64;hb=f51ecb48027e6b1eb46840ae25888a25b429f012;hp=e7ce31212192a4bac445a4013bfb2f4f5cd878bf;hpb=1339492699ce7e12c9bf9fa17f9d60a66024cbd1;p=pspp diff --git a/tests/command/examine-extremes.sh b/tests/command/examine-extremes.sh index e7ce312121..71d7d27982 100755 --- a/tests/command/examine-extremes.sh +++ b/tests/command/examine-extremes.sh @@ -5,16 +5,28 @@ 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 +LANG=C +export LANG cleanup() { + if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then + echo "NOT cleaning $TEMPDIR" + return ; + fi + cd / rm -rf $TEMPDIR } @@ -83,41 +95,31 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" -diff -b -B $TEMPDIR/pspp.list - << EOF -1.1 EXAMINE. Case Processing Summary -#==#===============================# -# # Cases # -# #----------+---------+----------# -# # Valid | Missing | Total # -# #--+-------+-+-------+--+-------# -# # N|Percent|N|Percent| N|Percent# -#==#==#=======#=#=======#==#=======# -#V1#23| 100%|0| 0%|23| 100%# -#==#==#=======#=#=======#==#=======# - -1.2 EXAMINE. Extreme Values -#==========#===========#=====# -# #Case Number|Value# -#==========#===========#=====# -#V1Highest1# 21|20.00# -# 2# 20|19.00# -# 3# 19|18.00# -# 4# 19|18.00# -# 5# 18|17.00# -# 6# 17|16.00# -# --------#-----------+-----# -# Lowest1# 1| 1.00# -# 2# 2| 2.00# -# 3# 4| 3.00# -# 4# 3| 3.00# -# 5# 3| 3.00# -# 6# 5| 4.00# -#==========#===========#=====# - +diff -c $TEMPDIR/pspp.csv - << EOF +Table: Case Processing Summary +,Cases,,,,, +,Valid,,Missing,,Total, +,N,Percent,N,Percent,N,Percent +V1,23.00,100%,.00,0%,23.00,100% + +Table: Extreme Values +,,,Case Number,Value +V1,Highest,1,21,20.00 +,,2,20,19.00 +,,3,19,18.00 +,,4,19,18.00 +,,5,18,17.00 +,,6,17,16.00 +,Lowest,1,1,1.00 +,,2,2,2.00 +,,3,3,3.00 +,,4,3,3.00 +,,5,4,3.00 +,,6,5,4.00 EOF if [ $? -ne 0 ] ; then fail ; fi