test-lib.sh: unset XDG_CACHE_HOME

git respects XDG_CACHE_HOME for the credential cache. So, we should unset XDG_CACHE_HOME for the test environment, lest a user's custom one cause failure in the test. For example, t/t0301-credential-cache.sh expects a default directory to be used if it hasn't explicitly set XDG_CACHE_HOME. Signed-off-by: Genki Sky <sky@genki.is> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Genki Sky committed Feb 15, 2018 at 21:46 UTC 7976e901c8df980a45a881bcc8cdf6e1095133a6
1 file changed +1
t/test-lib.sh
+1
@@ -104,6 +104,7 @@ unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e '
104 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env);
105 print join("\n", @vars);
106 ')
107 +unset XDG_CACHE_HOME
108 unset XDG_CONFIG_HOME
109 unset GITPERLLIB
110 GIT_AUTHOR_EMAIL=author@example.com