X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=56a1bb30c425cba16c7e0d15d70ba5abc00ead56;hb=b70dc1a6b7b15967ceb111f80dff65c44f0fac57;hp=599892714731308d1e2ca2bc9acbb4e5cb419d0b;hpb=b26094b483f97d89025df65a30523a65e716790a;p=pspp diff --git a/tests/command/sample.sh b/tests/command/sample.sh index 5998927147..56a1bb30c4 100755 --- a/tests/command/sample.sh +++ b/tests/command/sample.sh @@ -48,9 +48,9 @@ cd $TEMPDIR 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 +-- +EOF if [ $? -ne 0 ] ; then fail ; fi -fail +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;