aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-10-25 12:57:48 -0700
committerJunio C Hamano <junkio@cox.net>2006-10-25 12:57:48 -0700
commit7756b1f1dc07fae9abab4126a687a2609dfbf009 (patch)
tree03b62a5fb81bc0e974f2d37829505c683cdf20a6 /t
parent1259404c7e5cd88b7f6692986469cd20cbfacdad (diff)
parent70da769a4607dbbc4efc490287ead98175cf622b (diff)
downloadgit-7756b1f1dc07fae9abab4126a687a2609dfbf009.tar.gz
git-7756b1f1dc07fae9abab4126a687a2609dfbf009.tar.xz
Merge branch 'maint'
* maint: xdiff: Match GNU diff behaviour when deciding hunk comment worthiness of lines Update cherry documentation. Refer to git-rev-parse:Specifying Revisions from git.txt git-fetch.sh printed protocol fix RPM package re-classification. Documentation: note about contrib/. git-svn: fix symlink-to-file changes when using command-line svn 1.4.0 Set $HOME for selftests
Diffstat (limited to 't')
-rwxr-xr-xt/test-lib.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 2488e6eae..07cb706fa 100755
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -207,7 +207,8 @@ test_done () {
# t/ subdirectory and are run in trash subdirectory.
PATH=$(pwd)/..:$PATH
GIT_EXEC_PATH=$(pwd)/..
-export PATH GIT_EXEC_PATH
+HOME=$(pwd)/trash
+export PATH GIT_EXEC_PATH HOME
# Similarly use ../compat/subprocess.py if our python does not
# have subprocess.py on its own.