Converted the t-test to use multipass_with_split.... mechanism
[pspp] / tests / bugs / html-frequency.sh
index 9ef4a4af2ea6bc2caffbcdf64e49b69425f0a502..474735fc74ba0bec85bfcdefcfdb36ffd187ef89 100755 (executable)
@@ -7,6 +7,13 @@
 
 TEMPDIR=/tmp/pspp-tst-$$
 
+here=`pwd`
+
+# ensure that top_srcdir is absolute
+cd $top_srcdir ; top_srcdir=`pwd`
+
+STAT_CONFIG_PATH=$top_srcdir/config
+
 cleanup()
 {
      rm -rf $TEMPDIR
@@ -38,7 +45,6 @@ pass()
 
 mkdir -p $TEMPDIR
 
-here=`pwd`;
 
 activity="create data"
 cat << EOF > $TEMPDIR/ff.stat 
@@ -51,6 +57,8 @@ begin data.
 3 4
 end data.
 
+list.
+
 frequencies v1 v2.
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
@@ -58,7 +66,7 @@ if [ $? -ne 0 ] ; then no_result ; fi
 cd $TEMPDIR
 
 activity="run data"
-$here/../src/pspp -o html $TEMPDIR/ff.stat
+$SUPERVISOR $here/../src/pspp -o html $TEMPDIR/ff.stat
 if [ $? -ne 0 ] ; then fail ; fi