Checkin of new directory structure.
[pspp-builds.git] / tests / bugs / agg_crash.sh
index 30d63be106bd5f4a8c8c859e29b8a76859b28847..7e8adba2a20b8bb26982cee97e1c3011074497ab 100755 (executable)
@@ -6,16 +6,21 @@
 TEMPDIR=/tmp/pspp-tst-$$
 TESTFILE=$TEMPDIR/`basename $0`.sps
 
-here=`pwd`;
+# ensure that top_builddir  are absolute
+if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
+if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
+top_builddir=`cd $top_builddir; pwd`
 
 # ensure that top_srcdir is absolute
-cd $top_srcdir; top_srcdir=`pwd`
+top_srcdir=`cd $top_srcdir; pwd`
 
-export STAT_CONFIG_PATH=$top_srcdir/config
+STAT_CONFIG_PATH=$top_srcdir/config
+export STAT_CONFIG_PATH
 
 
 cleanup()
 {
+     cd /
      rm -rf $TEMPDIR
 }
 
@@ -51,8 +56,8 @@ activity="create program"
 cat > $TESTFILE <<EOF
 INPUT PROGRAM.
 LOOP c=1 TO 20.
-COMPUTE x=UNIFORM(10)
-END CASE.
+  COMPUTE x=UNIFORM(10)
+  END CASE.
 END LOOP.
 END FILE.
 END INPUT PROGRAM.
@@ -66,7 +71,7 @@ if [ $? -ne 0 ] ; then no_result ; fi
 # So this will have a non zero error status.
 # But it shouldn't crash!
 activity="run_program"
-$SUPERVISOR $here/../src/pspp $TESTFILE > /dev/null
+$SUPERVISOR $top_builddir/src/pspp $TESTFILE > /dev/null
 if [ $? -ne 1 ] ; then fail ; fi