From: Jeff King Date: Thu, 22 May 2014 09:28:50 +0000 (-0400) Subject: test-lib: preserve GIT_CURL_VERBOSE from the environment X-Git-Tag: v2.1.0-rc0~112^2~7 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e2a0ccc01fab1770bd3b2767481137c6f728e5ab?ds=inline;hp=--cc test-lib: preserve GIT_CURL_VERBOSE from the environment Turning on this variable can be useful when debugging http tests. It does break a few tests in t5541, but it is not a variable that the user is likely to have enabled accidentally. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- e2a0ccc01fab1770bd3b2767481137c6f728e5ab diff --git a/t/test-lib.sh b/t/test-lib.sh index c081668dfe..f7e55b1001 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -91,6 +91,7 @@ unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e ' VALGRIND UNZIP PERF_ + CURL_VERBOSE )); my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); print join("\n", @vars);