X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ffile-label.sh;h=239a2754adca15efa2e084dd5062d0bed7a9aa07;hb=425d780e0e2cc08c58722145df4d3dd808f01d48;hp=4b6ab0e62200ea9af07b5cced5e2e7627ac1f8ec;hpb=9aff19b717bcc242e16d04c34f348fd79ebdd685;p=pspp diff --git a/tests/command/file-label.sh b/tests/command/file-label.sh index 4b6ab0e622..239a2754ad 100755 --- a/tests/command/file-label.sh +++ b/tests/command/file-label.sh @@ -9,7 +9,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` @@ -22,6 +22,10 @@ export LANG cleanup() { + if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then + echo "NOT cleaning $TEMPDIR" + return ; + fi cd / rm -rf $TEMPDIR } @@ -115,54 +119,98 @@ EOF 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 no_result ; fi # We need to filter out the dates/times activity="date filter" -grep -v '[Ee]ntered' $TEMPDIR/pspp.list > $TEMPDIR/pspp.filtered +sed 's/(Entered [^)]*)/(Entered )/' $TEMPDIR/pspp.csv > $TEMPDIR/pspp.filtered if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" -perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.filtered -diff -b $TEMPDIR/pspp.filtered - <) + File label: + This is a test file label + Documents in the active file: + document First line of a document + Second line of a document + The last line should end with a period: . + +(Entered ) + Line one + Line two + +(Entered ) + File label: + This is a test file label + Documents in the active file: + document First line of a document + Second line of a document + The last line should end with a period: . + +(Entered ) + Line one + Line two + +(Entered ) + document There should be another document now. + +(Entered ) + Documents in the active file: + document First line of a document + Second line of a document + The last line should end with a period: . + +(Entered ) + Line one + Line two + +(Entered ) + document There should be another document now. + +(Entered ) + File label: + This is a test file label EOF if [ $? -ne 0 ] ; then fail ; fi