X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=4f4515e2be05073a21a85232970a2bdbe77b5069;hb=4ba231eb219f2cd1daa45297672b61bcc11cfcff;hp=b5ab80e71fbee50de4f0b2fd840c5913afed97fd;hpb=af3d0cc241b60028b16ea8173d9496649af9e425;p=pspp-builds.git diff --git a/tests/command/sample.sh b/tests/command/sample.sh index b5ab80e7..4f4515e2 100755 --- a/tests/command/sample.sh +++ b/tests/command/sample.sh @@ -3,17 +3,28 @@ # This program tests the SAMPLE function 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() { + if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then + echo "NOT cleaning $TEMPDIR" + return ; + fi + cd / rm -rf $TEMPDIR } @@ -50,7 +61,7 @@ activity="create program" cat > $TEMPDIR/sample.stat < $TEMPDIR/head +if [ $? -ne 0 ] ; then no_result ; fi + +activity="extract data" +grep '[0-9][0-9]*' $TEMPDIR/pspp.list > $TEMPDIR/data +if [ $? -ne 0 ] ; then no_result ; fi + +activity="compare head" +perl -pi -e 's/^\s*$//g' $TEMPDIR/head +diff -b $TEMPDIR/head - << EOF A -- - 2 - 6 - 9 -10 EOF if [ $? -ne 0 ] ; then fail ; fi +activity="compare data" +diff -w $TEMPDIR/data - << EOF > $TEMPDIR/diffs +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +EOF +# note vv +if [ $? -eq 0 ] ; then fail ; fi + +# Check that there was nothing added +grep '^<' $TEMPDIR/diffs +# note vv +if [ $? -eq 0 ] ; then fail ; fi + + pass;