summaryrefslogtreecommitdiff
path: root/t/t5310-pack-bitmaps.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-10-24 21:56:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-10-24 21:56:10 (GMT)
commit26a22d8d00e288dd4825f5d5d77d47473bdf3a6b (patch)
treef1866068ea255027cc9cee88673763fffd6b9c90 /t/t5310-pack-bitmaps.sh
parent19b5d50cb15637f20b9cce01806b3a256491d613 (diff)
parent21134714787a02a37da15424d72c0119b2b8ed71 (diff)
downloadgit-26a22d8d00e288dd4825f5d5d77d47473bdf3a6b.zip
git-26a22d8d00e288dd4825f5d5d77d47473bdf3a6b.tar.gz
git-26a22d8d00e288dd4825f5d5d77d47473bdf3a6b.tar.bz2
Merge branch 'jk/pack-objects-no-bitmap-when-splitting'
Splitting pack-objects output into multiple packs is incompatible with the use of reachability bitmap. * jk/pack-objects-no-bitmap-when-splitting: pack-objects: turn off bitmaps when we split packs
Diffstat (limited to 't/t5310-pack-bitmaps.sh')
-rwxr-xr-xt/t5310-pack-bitmaps.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t5310-pack-bitmaps.sh b/t/t5310-pack-bitmaps.sh
index 0580258..6003490 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