X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Fatlocal.in;h=60f3dbf354b8eaf1cca163f659aba53ed1903c11;hb=1f14e0558dc6e77f9fab836ccfad00341535057d;hp=c23f8e9a22308823a39079d16ca88a79f3fc31ec;hpb=1ba2441379b183a96eef51a824d772f1945a31a7;p=sliver-openvswitch.git diff --git a/tests/atlocal.in b/tests/atlocal.in index c23f8e9a2..60f3dbf35 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 @@ -24,6 +25,21 @@ export PYTHONIOENCODING PYTHONDONTWRITEBYTECODE=yes export PYTHONDONTWRITEBYTECODE +# Test whether the current working directory name is all ASCII +# characters. Some Python code doesn't tolerate non-ASCII characters +# in filenames very well, so if the current working directory is +# non-ASCII then we skip the tests that run those programs. +# +# This would be just papering over a real problem, except that the +# tests that we skip are launched from initscripts and thus normally +# run in system directories with ASCII names. (This problem only came +# up at all because the Debian autobuilders do build in a top-level +# directory named /«BUILDDIR».) +case `pwd | tr -d ' -~'` in + '') non_ascii_cwd=false ;; + *) non_ascii_cwd=true +esac + if test $HAVE_PYTHON = yes; then if python -m argparse 2>/dev/null; then : @@ -33,12 +49,42 @@ if test $HAVE_PYTHON = yes; then fi fi -# Enable glibc malloc debugging features. -MALLOC_CHECK_=2 -MALLOC_PERTURB_=165 -export MALLOC_CHECK_ -export MALLOC_PERTURB_ +# 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 + +# The name of loopback interface +case `uname` in +Linux) + LOOPBACK_INTERFACE=lo + ;; +FreeBSD|NetBSD) + LOOPBACK_INTERFACE=lo0 + ;; +esac -# Enable FreeBSD libc malloc debugging features. -MALLOC_CONF=AJ -export MALLOC_CONF +# Check for MINGW platform. +case `uname` in +MINGW*) + IS_WIN32="yes" + ;; +*) + IS_WIN32="no" + ;; +esac