X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Fatlocal.in;h=3db626c347d49010fc2d771e3f6769118d7266d9;hb=8073dd318b5a08fa447392f100d62b3bf54388a7;hp=53602258cd9d3e33af9f52582aa4e4d763059c47;hpb=853d10830faccd9a8d37780d2f957aaba40105d5;p=sliver-openvswitch.git diff --git a/tests/atlocal.in b/tests/atlocal.in index 53602258c..3db626c34 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -1,6 +1,7 @@ # -*- shell-script -*- HAVE_OPENSSL='@HAVE_OPENSSL@' HAVE_PYTHON='@HAVE_PYTHON@' +EGREP='@EGREP@' PERL='@PERL@' if test x"$PYTHON" = x; then @@ -32,3 +33,23 @@ if test $HAVE_PYTHON = yes; then export PYTHONPATH fi fi + +# Enable malloc debugging features. +case `uname` in +Linux) + MALLOC_CHECK_=2 + MALLOC_PERTURB_=165 + export MALLOC_CHECK_ + export MALLOC_PERTURB_ + ;; +FreeBSD) + case `uname -r` in + [789].*) + MALLOC_CONF=AJ + ;; + *) + MALLOC_CONF=abort:true,junk:true,redzone:true + ;; + esac + export MALLOC_CONF +esac