From: Daniel Stenberg Date: Thu, 14 Jul 2011 09:03:03 +0000 (+0200) Subject: runtests: ignore the 'all_proxy' environment variable as well X-Git-Tag: curl-7_22_0~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c1f50c583f5213677897afaf354716460c11b64;p=thirdparty%2Fcurl.git runtests: ignore the 'all_proxy' environment variable as well We should probably also make sure that [protocol]_proxy for all possible protocols libcurl supports are unset. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index a498963d02..9a0c0714db 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -308,7 +308,7 @@ $SIG{TERM} = \&catch_zap; # to prevent them to interfere with our testing! my $protocol; -foreach $protocol (('ftp', 'http', 'ftps', 'https', 'no')) { +foreach $protocol (('ftp', 'http', 'ftps', 'https', 'no', 'all')) { my $proxy = "${protocol}_proxy"; # clear lowercase version delete $ENV{$proxy} if($ENV{$proxy});