From a162e78df082d4f885bda2e51067d9788a7f65e4 Mon Sep 17 00:00:00 2001 From: Matthieu Moy Date: Mon, 20 Apr 2009 13:09:37 +0200 Subject: [PATCH] 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 --- t/t5701-clone-local.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/t/t5701-clone-local.sh b/t/t5701-clone-local.sh index 3559d17964..f26b511c3e 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 -- 2.11.4.GIT