diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-10-29 10:35:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-29 10:35:17 -0700 |
commit | ebc2e5a593ce7082bed03b2d22e2fe83583a9f5d (patch) | |
tree | 2455e6eaba3f324d883ee90069019388e80eb16e /t | |
parent | Merge branch 'da/mergetool-meld' into maint (diff) | |
parent | pack-objects: turn off bitmaps when we split packs (diff) | |
download | tgif-ebc2e5a593ce7082bed03b2d22e2fe83583a9f5d.tar.xz |
Merge branch 'jk/pack-objects-no-bitmap-when-splitting' into maint
* jk/pack-objects-no-bitmap-when-splitting:
pack-objects: turn off bitmaps when we split packs
Diffstat (limited to 't')
-rwxr-xr-x | t/t5310-pack-bitmaps.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t5310-pack-bitmaps.sh b/t/t5310-pack-bitmaps.sh index 0580258c91..6003490192 100755 --- a/t/t5310-pack-bitmaps.sh +++ b/t/t5310-pack-bitmaps.sh @@ -170,4 +170,13 @@ test_expect_success JGIT 'jgit can read our bitmaps' ' ) ' +test_expect_success 'splitting packs does not generate bogus bitmaps' ' + test-genrandom foo $((1024 * 1024)) >rand && + git add rand && + git commit -m "commit with big file" && + git -c pack.packSizeLimit=500k repack -adb && + git init --bare no-bitmaps.git && + git -C no-bitmaps.git fetch .. HEAD +' + test_done |