X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ffile-label.sh;h=70a071502c139341855eb07c3933728324700673;hb=fad7434e2db08ed248228e03533b314b8335ef2f;hp=aaf404f412d9991e2b76354de3bbdd33a8b76473;hpb=44d7b18d5c3d0a806fe1a29658445254f2376600;p=pspp-builds.git diff --git a/tests/command/file-label.sh b/tests/command/file-label.sh index aaf404f4..70a07150 100755 --- a/tests/command/file-label.sh +++ b/tests/command/file-label.sh @@ -1,18 +1,24 @@ #!/bin/sh -# This program tests the FILE LABEL and DOCUMENT commands +# This program tests the FILE LABEL and DOCUMENT, and ADD DOCUMENT commands 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() { @@ -71,15 +77,18 @@ document First line of a document This is the second very long line of a document in an attempt to overflow the input buffer with a really long line Note that the last line should end with a period: . + /* Display the documents. display documents. -display file label. /* undocumented feature of PSPP +display file label. + +ADD DOCUMENT 'Line one' 'Line two'. /* Save the active file then get it and display the documents again. save /OUTFILE='foo.save'. get /FILE='foo.save'. display documents. -display file label. /* undocumented feature of PSPP +display file label. /* There is an interesting interaction that occurs if the 'execute' /* command below. What happens is that an error message is output @@ -98,7 +107,7 @@ display documents. save /OUTFILE='foo.save'. get /FILE='foo.save'. display documents. -display file label. /* undocumented feature of PSPP +display file label. /* Done. @@ -106,59 +115,53 @@ EOF if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TESTFILE +$SUPERVISOR $PSPP --testing-mode -o raw-ascii $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi # We need to filter out the dates/times activity="date filter" -grep -v 'Document entered' $TEMPDIR/pspp.list > $TEMPDIR/pspp.filtered +grep -v '[Ee]ntered' $TEMPDIR/pspp.list > $TEMPDIR/pspp.filtered if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" -diff -b -B $TEMPDIR/pspp.filtered - <