X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft5704-bundle.sh;h=af19994aa7afa570bf30fe4ee7344993107f82d7;hb=bc2fed4;hp=728ccd88c3d69f06bff2c3593ddc325f9186402c;hpb=2d11f21c365821ccba1e093f22b99ad71b955f21;p=git.git diff --git a/t/t5704-bundle.sh b/t/t5704-bundle.sh index 728ccd88c..af19994aa 100755 --- a/t/t5704-bundle.sh +++ b/t/t5704-bundle.sh @@ -53,4 +53,26 @@ test_expect_failure 'bundle --stdin ' ' ' +test_expect_success 'empty bundle file is rejected' ' + + >empty-bundle && test_must_fail git fetch empty-bundle + +' + +# This triggers a bug in older versions where the resulting line (with +# --pretty=oneline) was longer than a 1024-char buffer. +test_expect_success 'ridiculously long subject in boundary' ' + : >file4 && + test_tick && + git add file4 && + printf "%01200d\n" 0 | git commit -F - && + test_commit fifth && + git bundle create long-subject-bundle.bdl HEAD^..HEAD && + git bundle list-heads long-subject-bundle.bdl >heads && + test -s heads && + git fetch long-subject-bundle.bdl && + sed -n "/^-/{p;q}" long-subject-bundle.bdl >boundary && + grep "^-$_x40 " boundary +' + test_done