aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-07-14 11:03:03 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-07-14 11:04:00 +0200
commit9c1f50c583f5213677897afaf354716460c11b64 (patch)
treef617e0956ac7f503e0d55eb8236d012eb0da6bd6 /tests
parent6e3285d5b197fb02d41b31a2ae78a57e5993248e (diff)
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.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index a498963d0..9a0c0714d 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});