Sat Jul 30 21:54:23 2005 Ben Pfaff <blp@gnu.org>
[pspp] / tests / command / weight.sh
index 9243cb32a0f1ccf074e7b48a70ceced2d6de440d..d2840edd807b65f7035e7fc2c9d7b68badf692c8 100755 (executable)
@@ -3,17 +3,21 @@
 # This program tests the WEIGHT command
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
 
 here=`pwd`;
 
 # ensure that top_srcdir is absolute
 cd $top_srcdir; top_srcdir=`pwd`
 
-export STAT_CONFIG_PATH=$top_srcdir/config
+STAT_CONFIG_PATH=$top_srcdir/config
+export STAT_CONFIG_PATH
 
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then return ; fi
+     cd /
      rm -rf $TEMPDIR
 }
 
@@ -46,19 +50,19 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/weight.stat <<EOF
+cat > $TESTFILE << EOF
 data list file='$top_srcdir/tests/weighting.data'/AVAR 1-5 BVAR 6-10.
 weight by BVAR.
 
 descriptives AVAR /statistics all /format serial.
-frequencies AVAR /statistics all /format condensed.
+frequencies AVAR /statistics all /format condense.
 
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
 
 activity="run program"
-$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TEMPDIR/weight.stat
+$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TESTFILE
 if [ $? -ne 0 ] ; then no_result ; fi
 
 activity="compare results"
@@ -137,20 +141,24 @@ diff -B -b $TEMPDIR/pspp.list - <<EOF
 |      94|       1|  0|100|
 +--------+--------+---+---+
 
-Mean         31.515
-S.E. Mean      .405
-Median         .   
-Mode         21.000
-Std Dev      10.937
-Variance    119.608
-Kurtosis      2.411
-S.E. Kurt      .181
-Skewness      1.345
-S.E. Skew      .090
-Range        76.000
-Minimum      18.000
-Maximum      94.000
-Sum       23006.000
++-----------------+---------+
+|N         Valid  |      730|
+|          Missing|        0|
+|Mean             |   31.515|
+|S.E. Mean        |     .405|
+|Median           |   28.500|
+|Mode             |   21.000|
+|Std Dev          |   10.937|
+|Variance         |  119.608|
+|Kurtosis         |    2.411|
+|S.E. Kurt        |     .181|
+|Skewness         |    1.345|
+|S.E. Skew        |     .090|
+|Range            |   76.000|
+|Minimum          |   18.000|
+|Maximum          |   94.000|
+|Sum              |23006.000|
++-----------------+---------+
 EOF
 if [ $? -ne 0 ] ; then fail ; fi