summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDavid Turner <dturner@twosigma.com>2016-12-28 22:45:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-29 21:45:37 (GMT)
commit1c409a705cb30ae3db6cdd48757c4a85f51456d4 (patch)
tree31094619358b4e3634660cc2c7a7aacc786d27d0 /t
parentbdf56de896b48d6fe3ad90e92138b5fd6579748d (diff)
downloadgit-1c409a705cb30ae3db6cdd48757c4a85f51456d4.zip
git-1c409a705cb30ae3db6cdd48757c4a85f51456d4.tar.gz
git-1c409a705cb30ae3db6cdd48757c4a85f51456d4.tar.bz2
repack: die on incremental + write-bitmap-index
The bitmap index only works for single packs, so requesting an incremental repack with bitmap indexes makes no sense. Signed-off-by: David Turner <dturner@twosigma.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t5310-pack-bitmaps.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/t/t5310-pack-bitmaps.sh b/t/t5310-pack-bitmaps.sh
index 3893afd..03b6552 100755
--- a/t/t5310-pack-bitmaps.sh
+++ b/t/t5310-pack-bitmaps.sh
@@ -105,12 +105,10 @@ test_expect_success 'fetch (partial bitmap)' '
test_cmp expect actual
'
-test_expect_success 'incremental repack cannot create bitmaps' '
+test_expect_success 'incremental repack fails when bitmaps are requested' '
test_commit more-1 &&
- find .git/objects/pack -name "*.bitmap" >expect &&
- git repack -d &&
- find .git/objects/pack -name "*.bitmap" >actual &&
- test_cmp expect actual
+ test_must_fail git repack -d 2>err &&
+ test_i18ngrep "Incremental repacks are incompatible with bitmap" err
'
test_expect_success 'incremental repack can disable bitmaps' '