aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-02 07:54:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-02 07:54:25 +0000
commite71bd416f4822113d49d7523268fd32a3ce462f2 (patch)
tree22051c5fb2ee1bed458f03f74b38ae12f87920e2 /tests/runtests.pl
parentad66fc6cc2be6bb1918af84a523bab4459d36308 (diff)
blank a few more environment variables before running a test
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl7
1 files changed, 7 insertions, 0 deletions
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.