Fix double-free bug.
[pspp] / tests / bugs / val-labs-trailing-slash.sh
index 6a16984aa0431e7ec5ec2c66bd6e6a38d760bef6..7d316ed30dfd81b811753d511b0cfe24c1f01770 100755 (executable)
@@ -4,6 +4,7 @@
 # which caused a crash if it had a trailing /
 
 TEMPDIR=/tmp/pspp-tst-$$
+TESTFILE=$TEMPDIR/`basename $0`.sps
 
 here=`pwd`;
 
@@ -47,7 +48,7 @@ mkdir -p $TEMPDIR
 cd $TEMPDIR
 
 activity="create program"
-cat > $TEMPDIR/out.stat <<EOF
+cat > $TESTFILE <<EOF
 DATA LIST LIST /X * .
 BEGIN DATA.
 1 
@@ -66,7 +67,7 @@ if [ $? -ne 0 ] ; then no_result ; fi
 
 
 activity="run program"
-$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/out.stat
+$SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE
 if [ $? -ne 0 ] ; then fail ; fi
 
 pass