Remove devind output driver.
[pspp] / tests / bugs / double-frequency.sh
index 8e21dfd2957db306ebfe1c4a4112efa2d01cc677..c97521ba2c671e031bfd403cc6a0907ec357ea72 100755 (executable)
@@ -4,9 +4,21 @@
 # Commands existed in a input file
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
+
+here=`pwd`;
+
+# ensure that top_srcdir is absolute
+cd $top_srcdir; top_srcdir=`pwd`
+
+
+STAT_CONFIG_PATH=$top_srcdir/config
+export STAT_CONFIG_PATH
+
 
 cleanup()
 {
+     cd /
      rm -rf $TEMPDIR
 }
 
@@ -36,7 +48,6 @@ pass()
 
 mkdir -p $TEMPDIR
 
-here=`pwd`;
 
 activity="create data"
 cat << EOF > $TEMPDIR/ff.stat 
@@ -54,10 +65,11 @@ frequencies v1 v2.
 EOF
 if [ $? -ne 0 ] ; then no_result ; fi
 
+
 cd $TEMPDIR
 
 activity="run data"
-$here/../src/pspp $TEMPDIR/ff.stat
+$SUPERVISOR $here/../src/pspp  $TEMPDIR/ff.stat
 if [ $? -ne 0 ] ; then fail ; fi