]> git.ipfire.org Git - thirdparty/git.git/commitdiff
p5326: generate pack bitmaps before writing the MIDX bitmap
authorTaylor Blau <me@ttaylorr.com>
Fri, 17 Sep 2021 21:21:27 +0000 (17:21 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 17 Sep 2021 21:34:48 +0000 (14:34 -0700)
To help test the performance of permuting the contents of the hash-cache
when generating a MIDX bitmap, we need a bitmap which has its hash-cache
populated.

And since multi-pack bitmaps don't add *new* values to the hash-cache,
we have to rely on a single-pack bitmap to generate those values for us.

Therefore, generate a pack bitmap before the MIDX one in order to ensure
that the MIDX bitmap has entries in its hash-cache. Since we don't want
to time generating the pack bitmap, move that to a non-perf test run
before we try to generate the MIDX bitmap.

Likewise, get rid of the pack bitmap afterwords, to make certain that we
are not accidentally using it in the performance tests run later on.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/p5326-multi-pack-bitmaps.sh

index a9c549953757d164c70dd0a28c4be69775668de5..f2fa228f16a1ce5056da5add225cc3130fadeae3 100755 (executable)
@@ -12,11 +12,18 @@ test_expect_success 'create tags' '
        git tag --message="tag pointing to HEAD" perf-tag HEAD
 '
 
+test_expect_success 'start with bitmapped pack' '
+       git repack -adb
+'
+
 test_perf 'setup multi-pack index' '
-       git repack -ad &&
        git multi-pack-index write --bitmap
 '
 
+test_expect_success 'drop pack bitmap' '
+       rm -f .git/objects/pack/pack-*.bitmap
+'
+
 test_full_bitmap
 
 test_expect_success 'create partial bitmap state' '