1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
testdir=`(cd "./testdata"; exec pwd)`
username=`whoami 2>/dev/null`
space=" "
if test "@FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR@" = 1; then
slash="\\"
else
slash="/"
fi
package_string="@PACKAGE_STRING@"
package_date="@PACKAGE_DATE@"
PRELOAD=
BLAME=$abs_top_builddir/src/blame
if test "$VALGRIND" = 1; then
if test "@FASTEXIT@" = 1; then
PRELOAD="valgrind -q --tool=memcheck --error-exitcode=42"
else
PRELOAD="valgrind -q --tool=memcheck --error-exitcode=42 --leak-check=yes"
fi
fi
export PRELOAD BLAME
|