From 886a39074be34d21afc6c1b8af1f7f4b3ef54dc5 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 24 Apr 2007 11:21:47 -0700 Subject: [PATCH] t/test-lib.sh: Protect ourselves from common misconfiguration that exports CDPATH to the environment Signed-off-by: Junio C Hamano --- t/test-lib.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/test-lib.sh b/t/test-lib.sh index c0754747fb..f2c6bd3b01 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -36,6 +36,10 @@ export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME export EDITOR VISUAL +# Protect ourselves from common misconfiguration to export +# CDPATH into the environment +unset CDPATH + case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in 1|2|true) echo "* warning: Some tests will not work if GIT_TRACE" \ -- 2.11.4.GIT