Fixed memory leak. Made coeff a linreg_coeff** for easier use.
[pspp-builds.git] / tests / test_template
index a0f70b05405bc8bb7c591dd1f5ed9e11b2a208a7..bb1c17ee90aa1229f83a7b26df86373620d2305b 100755 (executable)
@@ -5,10 +5,13 @@
 TEMPDIR=/tmp/pspp-tst-$$
 TESTFILE=$TEMPDIR/`basename $0`.sps
 
-here=`pwd`;
+# ensure that top_srcdir and top_builddir  are absolute
+if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
+if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
+top_srcdir=`cd $top_srcdir; pwd`
+top_builddir=`cd $top_builddir; pwd`
 
-# ensure that top_srcdir is absolute
-cd $top_srcdir; top_srcdir=`pwd`
+PSPP=$top_builddir/src/ui/terminal/pspp
 
 export STAT_CONFIG_PATH=$top_srcdir/config
 
@@ -55,7 +58,7 @@ if [ $? -ne 0 ] ; then no_result ; fi
 
 
 activity="run program"
-$SUPERVISOR $here/../src/pspp --testing-mode -o raw-ascii $TESTFILE
+$SUPERVISOR $PSPP --testing-mode -o raw-ascii $TESTFILE
 if [ $? -ne 0 ] ; then no_result ; fi