X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ffile-label.sh;h=ca9da9cdc8064ea37d18a9ecffe98352e20febab;hb=30728b09540b323fef43b23dd5f1e4d1e8298c92;hp=ac7f514247238c223c2ae22d2cb0d9ad2c4fbec6;hpb=a19e7749cdb8713316fde220f2fc9a5ad5dc79ed;p=pspp-builds.git diff --git a/tests/command/file-label.sh b/tests/command/file-label.sh index ac7f5142..ca9da9cd 100755 --- a/tests/command/file-label.sh +++ b/tests/command/file-label.sh @@ -5,16 +5,22 @@ 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 cleanup() { + cd / rm -rf $TEMPDIR } @@ -47,11 +53,10 @@ mkdir -p $TEMPDIR cd $TEMPDIR activity="create program" -cat > $TEMPDIR/file-lab.stat << EOF - +cat > $TESTFILE << EOF /* Set up a dummy active file in memory. -data list /x 1 y 2. +data list /X 1 Y 2. begin data. 16 27 @@ -75,8 +80,8 @@ display documents. display file label. /* undocumented feature of PSPP /* Save the active file then get it and display the documents again. -save 'foo.save'. -get 'foo.save'. +save /OUTFILE='foo.save'. +get /FILE='foo.save'. display documents. display file label. /* undocumented feature of PSPP @@ -94,8 +99,8 @@ document There should be another document now. display documents. /* Save and get. -save 'foo.save'. -get 'foo.save'. +save /OUTFILE='foo.save'. +get /FILE='foo.save'. display documents. display file label. /* undocumented feature of PSPP @@ -105,7 +110,7 @@ EOF if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/file-lab.stat +$SUPERVISOR $PSPP --testing-mode -o raw-ascii $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi # We need to filter out the dates/times @@ -115,49 +120,37 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="compare results" -diff -b -B $TEMPDIR/pspp.filtered - <