On Tue, Jun 21, 2016 at 09:57:15AM -0700, Jarno Rajahalme wrote: > Add '--noproxy' parameter to 'wget' so that the test cases do not try > to use a proxy that may be configured in the test environment. > > Signed-off-by: Jarno Rajahalme <ja...@ovn.org>
We could do something like this to turn it off without messing with every call to wget. Lots of programs use these variables so it's possible that it would fix other tests later too. diff --git a/tests/atlocal.in b/tests/atlocal.in index f174061..c49e9b0 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -129,3 +129,13 @@ if nc --version 2>&1 | grep -q nmap.org; then else NC_EOF_OPT="-q 1" fi + +# Turn off proxies. +AS_UNSET([http_proxy]) +AS_UNSET([https_proxy]) +AS_UNSET([ftp_proxy]) +AS_UNSET([no_proxy]) +AS_UNSET([HTTP_PROXY]) +AS_UNSET([HTTPS_PROXY]) +AS_UNSET([FTP_PROXY]) +AS_UNSET([NO_PROXY]) _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev