X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=277593fad66b5e3b219395c966407168314a1406;hb=a19e7749cdb8713316fde220f2fc9a5ad5dc79ed;hp=b5ab80e71fbee50de4f0b2fd840c5913afed97fd;hpb=af3d0cc241b60028b16ea8173d9496649af9e425;p=pspp diff --git a/tests/command/sample.sh b/tests/command/sample.sh index b5ab80e71f..277593fad6 100755 --- a/tests/command/sample.sh +++ b/tests/command/sample.sh @@ -3,6 +3,7 @@ # This program tests the SAMPLE function TEMPDIR=/tmp/pspp-tst-$$ +TESTFILE=$TEMPDIR/`basename $0`.sps here=`pwd`; @@ -50,7 +51,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" +diff -B -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;