From: Jeff King Date: Tue, 31 Aug 2021 20:52:33 +0000 (-0400) Subject: t0410: disable GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP X-Git-Tag: v2.34.0-rc0~160^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3f17e17238806d5b1547632b61b44ed7b1f9453;p=thirdparty%2Fgit.git t0410: disable GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP Generating a MIDX bitmap causes tests which repack in a partial clone to fail because they are missing objects. Missing objects is an expected component of tests in t0410, so disable this knob altogether. Graceful degradation when writing a bitmap with missing objects is tested in t5326. Signed-off-by: Taylor Blau Signed-off-by: Junio C Hamano --- diff --git a/t/t0410-partial-clone.sh b/t/t0410-partial-clone.sh index bbcc51ee8e..bba679685f 100755 --- a/t/t0410-partial-clone.sh +++ b/t/t0410-partial-clone.sh @@ -4,6 +4,9 @@ test_description='partial clone' . ./test-lib.sh +# missing promisor objects cause repacks which write bitmaps to fail +GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP=0 + delete_object () { rm $1/.git/objects/$(echo $2 | sed -e 's|^..|&/|') }