From: Daniel Stenberg Date: Mon, 2 May 2005 07:54:25 +0000 (+0000) Subject: blank a few more environment variables before running a test X-Git-Tag: curl-7_14_0~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e71bd416f4822113d49d7523268fd32a3ce462f2;p=curl blank a few more environment variables before running a test --- diff --git a/tests/runtests.pl b/tests/runtests.pl index c13a6b30f..c7f9618da 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -180,6 +180,13 @@ foreach $protocol (('ftp', 'http', 'ftps', 'https', 'gopher', 'no')) { $ENV{uc($proxy)}=undef; } +# make sure we don't get affected by other variables that control our +# behaviour + +$ENV{'SSL_CERT_DIR'}=undef; +$ENV{'SSL_CERT_PATH'}=undef; +$ENV{'CURL_CA_BUNDLE'}=undef; + ####################################################################### # Start a new thread/process and run the given command line in there. # Return the pid of the new child process to the parent.