Implemented long variable names a la spss V12.
[pspp-builds.git] / tests / command / weight.sh
index 826a9a1cc089fb70d75185b45c1be2646fc08f10..8f759b21c27d849d50cf2bd8fe8f26e5f0339450 100755 (executable)
@@ -3,6 +3,7 @@
 # This program tests the WEIGHT command
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
 
 here=`pwd`;
 
@@ -14,6 +15,7 @@ export STAT_CONFIG_PATH=$top_srcdir/config
 
 cleanup()
 {
+     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then return ; fi
      rm -rf $TEMPDIR
 }
 
@@ -46,24 +48,24 @@ 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"
 diff -B -b $TEMPDIR/pspp.list - <<EOF
-1.1 DATA LIST.  Reading 1 record from file "$top_srcdir/tests/weighting.data".
+1.1 DATA LIST.  Reading 1 record from file $top_srcdir/tests/weighting.data.
 +--------+------+-------+------+
 |Variable|Record|Columns|Format|
 #========#======#=======#======#
@@ -75,7 +77,7 @@ diff -B -b $TEMPDIR/pspp.list - <<EOF
 +--------#-------+---------+------+--------+-------+--------+--------+--------+--------+--------+------+-------+-------+---------+
 |Variable#Valid N|Missing N| Mean |S E Mean|Std Dev|Variance|Kurtosis|S E Kurt|Skewness|S E Skew| Range|Minimum|Maximum|   Sum   |
 #========#=======#=========#======#========#=======#========#========#========#========#========#======#=======#=======#=========#
-|AVAR    #    730|        0|31.515|    .405| 10.937| 119.608|2548.162|    .181|   1.345|    .090|76.000| 18.000| 94.000|23006.000|
+|AVAR    #    730|        0|31.515|    .405| 10.937| 119.608|   2.411|    .181|   1.345|    .090|76.000| 18.000| 94.000|23006.000|
 +--------#-------+---------+------+--------+-------+--------+--------+--------+--------+--------+------+-------+-------+---------+
 
 3.1 FREQUENCIES.  AVAR: 
@@ -137,20 +139,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