diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-04-18 13:39:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-18 13:39:52 -0700 |
commit | d890d3f99635de7963effd1436148112ef7a52b7 (patch) | |
tree | 71138c5cf3cdd476164ebb0229c0f1eacc907588 /t | |
parent | 43be7a782e08489062a3b8130cbb7ffbe8807191 (diff) | |
parent | 62854410449ec407a363e4bb1dc980a75aa1699d (diff) | |
download | git-d890d3f99635de7963effd1436148112ef7a52b7.tar.gz git-d890d3f99635de7963effd1436148112ef7a52b7.tar.xz |
Merge branch 'maint-1.6.0' into maint
* maint-1.6.0:
doc/git-daemon: add missing arguments to options
init: Do not segfault on big GIT_TEMPLATE_DIR environment variable
Diffstat (limited to 't')
-rwxr-xr-x | t/t0001-init.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t0001-init.sh b/t/t0001-init.sh index 5ac0a273a..e3d846420 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -199,4 +199,13 @@ test_expect_success 'init honors global core.sharedRepository' ' x`git config -f shared-honor-global/.git/config core.sharedRepository` ' +test_expect_success 'init rejects insanely long --template' ' + ( + insane=$(printf "x%09999dx" 1) && + mkdir test && + cd test && + test_must_fail git init --template=$insane + ) +' + test_done |