aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 897a04cbd..17089ae54 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -87,6 +87,19 @@ chomp($pwd = `pwd`);
$ENV{'CURL_MEMDEBUG'} = 1;
$ENV{'HOME'}=$pwd;
+##########################################################################
+# Clear all possible '*_proxy' environment variables for various protocols
+# to prevent them to interfere with our testing!
+
+my $protocol;
+foreach $protocol (('ftp', 'http', 'ftps', 'https', 'gopher', 'no')) {
+ my $proxy = "${protocol}_proxy";
+ # clear lowercase version
+ $ENV{$proxy}=undef;
+ # clear uppercase version
+ $ENV{uc($proxy)}=undef;
+}
+
#######################################################################
# Return the pid of the server as found in the given pid file
#