git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] HOME must be set before calling git-init when creating test repositories
@ 2011-03-25 20:05 Alex Riesen
  2011-03-25 20:44 ` [PATCH, fixed] " Alex Riesen
  2011-03-25 20:49 ` [PATCH] " Junio C Hamano
  0 siblings, 2 replies; 14+ messages in thread
From: Alex Riesen @ 2011-03-25 20:05 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

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>
---

The first test which fails is t2017, btw.
I still wonder if this should be moved even further up.

 t/test-lib.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/t/test-lib.sh b/t/test-lib.sh
index 7cc9a52..4f394c3 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -984,14 +984,14 @@ rm -fr "$test" || {
 	exit 1
 }
 
+HOME=$(pwd)
+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
-- 
1.7.4.1.271.g4540f

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2011-03-26 18:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-25 20:05 [PATCH] HOME must be set before calling git-init when creating test repositories Alex Riesen
2011-03-25 20:44 ` [PATCH, fixed] " Alex Riesen
2011-03-25 20:49 ` [PATCH] " Junio C Hamano
2011-03-25 21:01   ` Alex Riesen
2011-03-25 21:30     ` Junio C Hamano
2011-03-25 21:51       ` Alex Riesen
2011-03-25 22:39         ` Junio C Hamano
2011-03-26 10:08           ` Alex Riesen
2011-03-26 14:11             ` Jeff King
2011-03-26 18:21               ` Alex Riesen
2011-03-26 18:31                 ` Jeff King
2011-03-26 18:42                   ` Alex Riesen
2011-03-26 18:46                     ` Alex Riesen
2011-03-26 18:48                       ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).