X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=56a1bb30c425cba16c7e0d15d70ba5abc00ead56;hb=071bf8498aaa74c71d56617b683c07466f78febb;hp=b5ab80e71fbee50de4f0b2fd840c5913afed97fd;hpb=af3d0cc241b60028b16ea8173d9496649af9e425;p=pspp-builds.git diff --git a/tests/command/sample.sh b/tests/command/sample.sh index b5ab80e7..56a1bb30 100755 --- a/tests/command/sample.sh +++ b/tests/command/sample.sh @@ -50,7 +50,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;