summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-29 21:09:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-29 21:09:15 (GMT)
commit537d99033749591245ddd36f7317fd6b8555d803 (patch)
tree93eb8f7f148db12a7751204353ef87d14fb274ea /t/test-lib.sh
parent96220d837c4f58a6be447127b727b8a55246d231 (diff)
parent90cff968b3757061914f83b85a8d58cb9f29e72a (diff)
downloadgit-537d99033749591245ddd36f7317fd6b8555d803.zip
git-537d99033749591245ddd36f7317fd6b8555d803.tar.gz
git-537d99033749591245ddd36f7317fd6b8555d803.tar.bz2
Merge branch 'maint'
* maint: HOME must be set before calling git-init when creating test repositories
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 7a56f11..abc47f3 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -993,14 +993,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