X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ffile-handle.sh;h=937f05f79e625d5a063293c9380d746f6d3daade;hb=0f8c9c6c05632de5cadc70ca5381c1d9cb46960e;hp=fcf1907f1c0ed5d8fe1b1846b9974ced832070a3;hpb=009350385d97d9fba2b33ea68cfe8b1aeebf1529;p=pspp diff --git a/tests/command/file-handle.sh b/tests/command/file-handle.sh index fcf1907f1c..937f05f79e 100755 --- a/tests/command/file-handle.sh +++ b/tests/command/file-handle.sh @@ -9,6 +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 # ensure that top_srcdir is absolute top_srcdir=`cd $top_srcdir; pwd` @@ -19,6 +20,10 @@ export STAT_CONFIG_PATH cleanup() { + if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then + echo "NOT cleaning $TEMPDIR" + return ; + fi cd / rm -rf $TEMPDIR } @@ -71,26 +76,22 @@ EOF if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $top_builddir/src/pspp --testing-mode -o raw-ascii $TESTFILE +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi activity="compare output" -diff -b $TEMPDIR/pspp.list - << EOF -1.1 DATA LIST. Reading free-form data from myhandle. -+--------+------+ -|Variable|Format| -#========#======# -|x |F8.0 | -+--------+------+ - - x --------- - 1.00 - 2.00 - 5.00 - 109.00 - +diff -c $TEMPDIR/pspp.csv - << EOF +Table: Reading free-form data from myhandle. +Variable,Format +x,F8.0 + +Table: Data List +x +1.00 +2.00 +5.00 +109.00 EOF if [ $? -ne 0 ] ; then fail ; fi