From: Matthieu Moy Date: Mon, 20 Apr 2009 11:09:37 +0000 (+0200) Subject: clone: add test for push on an empty clone. X-Git-Tag: v1.6.3-rc2~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a162e78;p=git.git clone: add test for push on an empty clone. Commit 55f0566 (get_local_heads(): do not return random pointer if there is no head, 2009-04-17) fixed a segfault for git push, this patch adds a test-case to avoid future regressions. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- diff --git a/t/t5701-clone-local.sh b/t/t5701-clone-local.sh index 3559d1796..f26b511c3 100755 --- a/t/t5701-clone-local.sh +++ b/t/t5701-clone-local.sh @@ -132,4 +132,14 @@ test_expect_success 'clone empty repository' ' test $actual = $expected) ' +test_expect_success 'clone empty repository, and then push should not segfault.' ' + cd "$D" && + rm -fr empty/ empty-clone/ && + mkdir empty && + (cd empty && git init) && + git clone empty empty-clone && + cd empty-clone && + test_must_fail git push +' + test_done