X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsample.sh;h=6ba6646bc1ae3d3e202142138ee765e77d7186d5;hb=2da08e801be698df268f35ac6e21cc8a345ba1fb;hp=b5ab80e71fbee50de4f0b2fd840c5913afed97fd;hpb=af3d0cc241b60028b16ea8173d9496649af9e425;p=pspp-builds.git diff --git a/tests/command/sample.sh b/tests/command/sample.sh index b5ab80e7..6ba6646b 100755 --- a/tests/command/sample.sh +++ b/tests/command/sample.sh @@ -3,17 +3,24 @@ # 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() { + cd / rm -rf $TEMPDIR } @@ -50,7 +57,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;