summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2011-03-26 18:46:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-29 08:13:36 (GMT)
commit90cff968b3757061914f83b85a8d58cb9f29e72a (patch)
treea9e21a9be0ee614f1e63c66e3172eacab561a285 /t/test-lib.sh
parentf1723ee6b370c3d0cfaaea9d02188175a8d85af6 (diff)
downloadgit-90cff968b3757061914f83b85a8d58cb9f29e72a.zip
git-90cff968b3757061914f83b85a8d58cb9f29e72a.tar.gz
git-90cff968b3757061914f83b85a8d58cb9f29e72a.tar.bz2
HOME must be set before calling git-init when creating test repositories
Otherwise the created test repositories will be affected by users ~/.gitconfig. For example, setting core.logAllrefupdates in users config will make all calls to "git config --unset core.logAllrefupdates" fail which will break the first test which uses the statement and expects it to succeed. Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 0fdc541..c91e232 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -1004,14 +1004,14 @@ rm -fr "$test" || {
exit 1
}
+HOME="$TRASH_DIRECTORY"
+export HOME
+
test_create_repo "$test"
# Use -P to resolve symlinks in our working directory so that the cwd
# in subprocesses like git equals our $PWD (for pathname comparisons).
cd -P "$test" || exit 1
-HOME=$(pwd)
-export HOME
-
this_test=${0##*/}
this_test=${this_test%%-*}
for skp in $GIT_SKIP_TESTS