diff options
author | Jeff King <peff@peff.net> | 2012-07-24 07:53:05 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-24 08:59:07 -0700 |
commit | 5adf84ebb375eeee998edef9a2b5aaa05df677d0 (patch) | |
tree | 1bc1e891205cdc4b330b801bfe7a5c1c6826aa30 /t | |
parent | config: fix several access(NULL) calls (diff) | |
download | tgif-5adf84ebb375eeee998edef9a2b5aaa05df677d0.tar.xz |
test-lib.sh: unset XDG_CONFIG_HOME
Now that git respects XDG_CONFIG_HOME for some lookups, we
must be sure to cleanse the test environment. Otherwise, the
user's XDG_CONFIG_HOME could influence the test results.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r-- | t/test-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 9e2b71132a..2ac9536185 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -61,6 +61,7 @@ unset VISUAL EMAIL LANGUAGE COLUMNS $(perl -e ' my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); print join("\n", @vars); ') +unset XDG_CONFIG_HOME GIT_AUTHOR_EMAIL=author@example.com GIT_AUTHOR_NAME='A U Thor' GIT_COMMITTER_EMAIL=committer@example.com |