diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-09 14:28:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-09 14:28:16 +0000 |
commit | 8ba410a56e46d57571c5cd06f2e3a738f3fe3405 (patch) | |
tree | c022e64e1a8f629936ff2687dfbc90fb436baff3 /tests | |
parent | 14d1da3ae0419210ffd736489330aa689389a933 (diff) |
set the HOME variable to the current dir, to prevent any real ~/.curlrc to
play tricks on us!
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 933ff3010..988646d4a 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -76,6 +76,7 @@ chomp($pwd = `pwd`); # enable memory debugging if curl is compiled with it $ENV{'CURL_MEMDEBUG'} = 1; +$ENV{'HOME'}=$pwd; ####################################################################### # Return the pid of the server as found in the given pid file |