X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=6d3317e43a70af5a73228a60a4145581924f9d26;hb=c0ed03fd27298cf2b18f0fb373e919ab8b4ae4f4;hp=b5ab80e71fbee50de4f0b2fd840c5913afed97fd;hpb=c740d75bc7e22114c5cc5747d0e9460546d8566c;p=pspp-builds.git diff --git a/tests/command/sample.sh b/tests/command/sample.sh index b5ab80e7..6d3317e4 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;