Skip to content

Commit e255a5e

Browse files
ttaylorrgitster
authored andcommitted
t5319: don't write MIDX bitmaps in t5319
This test is specifically about generating a midx still respecting a pack-based bitmap file. Generating a MIDX bitmap would confuse the test. Let's override the 'GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP' variable to make sure we don't do so. Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent eb6e956 commit e255a5e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

t/t5319-multi-pack-index.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,8 @@ test_expect_success 'repack preserves multi-pack-index when creating packs' '
532532
compare_results_with_midx "after repack"
533533

534534
test_expect_success 'multi-pack-index and pack-bitmap' '
535-
git -c repack.writeBitmaps=true repack -ad &&
535+
GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP=0 \
536+
git -c repack.writeBitmaps=true repack -ad &&
536537
git multi-pack-index write &&
537538
git rev-list --test-bitmap HEAD
538539
'

0 commit comments

Comments
 (0)