Added a test for reading/writing of portable files.
[pspp-builds.git] / tests / command / sample.sh
index 599892714731308d1e2ca2bc9acbb4e5cb419d0b..56a1bb30c425cba16c7e0d15d70ba5abc00ead56 100755 (executable)
@@ -48,9 +48,9 @@ cd $TEMPDIR
 
 activity="create program"
 cat > $TEMPDIR/sample.stat <<EOF
-set seed=2
+set seed=3
 
-data list /a 1-2.
+data list notable /a 1-2.
 begin data.
 1
 2
@@ -64,16 +64,51 @@ begin data.
 10
 end data.
 sample .5.
-n 5.
 list.
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
 
-$here/../src/pspp -o raw-ascii $TEMPDIR/sample.stat
+activity="run program"
+$SUPERVISOR $here/../src/pspp -o raw-ascii --testing-mode $TEMPDIR/sample.stat 
+if [ $? -ne 0 ] ; then no_result ; fi
+
+activity="create head"
+grep -v '^\ *$' $TEMPDIR/pspp.list | head -2 > $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;