@@ -158,9 +158,8 @@ test_bitmap_cases () {
158158 ls .git/objects/pack/ | grep bitmap >output &&
159159 test_line_count = 1 output &&
160160 # verify equivalent packs are generated with/without using bitmap index
161- # Be careful to not use the path-walk option in either case.
162- packasha1=$(git pack-objects --no-use-bitmap-index --no-path-walk --all packa </dev/null) &&
163- packbsha1=$(git pack-objects --use-bitmap-index --no-path-walk --all packb </dev/null) &&
161+ packasha1=$(git pack-objects --no-use-bitmap-index --all packa </dev/null) &&
162+ packbsha1=$(git pack-objects --use-bitmap-index --all packb </dev/null) &&
164163 list_packed_objects packa-$packasha1.idx >packa.objects &&
165164 list_packed_objects packb-$packbsha1.idx >packb.objects &&
166165 test_cmp packa.objects packb.objects
@@ -389,14 +388,6 @@ test_bitmap_cases () {
389388 git init --bare client.git &&
390389 (
391390 cd client.git &&
392-
393- # This test relies on reusing a delta, but if the
394- # path-walk machinery is engaged, the base object
395- # is considered too small to use during the
396- # dynamic computation, so is not used.
397- GIT_TEST_PACK_PATH_WALK=0 &&
398- export GIT_TEST_PACK_PATH_WALK &&
399-
400391 git config transfer.unpackLimit 1 &&
401392 git fetch .. delta-reuse-old:delta-reuse-old &&
402393 git fetch .. delta-reuse-new:delta-reuse-new &&
0 commit comments