X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fvariable-display.sh;h=fece96e69ab5ac56f39e50a8fc41045fef701942;hb=b350a68a008217d92eb4cbcd571e322118d4e27a;hp=d3f680245315d5eb00ed7b0e2d83c1d781e3cb51;hpb=af4066391f20365e210460a736b1b02efe194da6;p=pspp-builds.git diff --git a/tests/command/variable-display.sh b/tests/command/variable-display.sh index d3f68024..fece96e6 100755 --- a/tests/command/variable-display.sh +++ b/tests/command/variable-display.sh @@ -10,7 +10,7 @@ TESTFILE=$TEMPDIR/`basename $0`.sps 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 +PSPP=$top_builddir/src/ui/terminal/pspp$EXEEXT # ensure that top_srcdir is absolute top_srcdir=`cd $top_srcdir; pwd` @@ -70,31 +70,24 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $PSPP --testing-mode $TESTFILE +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE if [ $? -ne 0 ] ; then fail ; fi activity="compare output" -perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list -diff -b $TEMPDIR/pspp.list - << EOF -1.1 DISPLAY. -+--------+-------------------------------------------+--------+ -|Variable|Description |Position| -#========#===========================================#========# -|x |Format: F8.2 | 1| -| |Measure: Scale | | -| |Display Alignment: Left | | -| |Display Width: 10 | | -+--------+-------------------------------------------+--------+ -|y |Format: F8.2 | 2| -| |Measure: Ordinal | | -| |Display Alignment: Right | | -| |Display Width: 12 | | -+--------+-------------------------------------------+--------+ -|z |Format: F8.2 | 3| -| |Measure: Nominal | | -| |Display Alignment: Center | | -| |Display Width: 14 | | -+--------+-------------------------------------------+--------+ +diff -c $TEMPDIR/pspp.csv - << EOF +Variable,Description,,Position +x,Format: F8.2,,1 +,Measure: Scale,, +,Display Alignment: Left,, +,Display Width: 10,, +y,Format: F8.2,,2 +,Measure: Ordinal,, +,Display Alignment: Right,, +,Display Width: 12,, +z,Format: F8.2,,3 +,Measure: Nominal,, +,Display Alignment: Center,, +,Display Width: 14,, EOF if [ $? -ne 0 ] ; then fail ; fi