Add scratch file handles.
[pspp-builds.git] / tests / bugs / html-frequency.sh
index 1c082356f8355089221326b285fd36388262c33c..e3df6fdeddc10d0a1ae6741cdb40c01aa77dacf1 100755 (executable)
@@ -6,6 +6,7 @@
 
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
 
 here=`pwd`
 
@@ -13,9 +14,11 @@ here=`pwd`
 cd $top_srcdir ; top_srcdir=`pwd`
 
 STAT_CONFIG_PATH=$top_srcdir/config
+export STAT_CONFIG_PATH
 
 cleanup()
 {
+     cd /
      rm -rf $TEMPDIR
 }
 
@@ -47,7 +50,7 @@ mkdir -p $TEMPDIR
 
 
 activity="create data"
-cat << EOF > $TEMPDIR/ff.stat 
+cat << EOF > $TESTFILE
 
 data list free /v1 v2.
 begin data.
@@ -66,7 +69,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 $TESTFILE
 if [ $? -ne 0 ] ; then fail ; fi