diff options
| author | Taylor Blau <me@ttaylorr.com> | 2021-09-17 17:21:27 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-09-17 14:34:48 -0700 |
| commit | bf4a60874af992655c139c612c06758353495e3b (patch) | |
| tree | da4bbf3f89d30c4467a2fd630d9a0a99c742373e /t/perf | |
| parent | p5326: don't set core.multiPackIndex unnecessarily (diff) | |
| download | git-bf4a60874af992655c139c612c06758353495e3b.tar.gz git-bf4a60874af992655c139c612c06758353495e3b.zip | |
p5326: generate pack bitmaps before writing the MIDX bitmap
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>
Diffstat (limited to 't/perf')
| -rwxr-xr-x | t/perf/p5326-multi-pack-bitmaps.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/t/perf/p5326-multi-pack-bitmaps.sh b/t/perf/p5326-multi-pack-bitmaps.sh index a9c5499537..f2fa228f16 100755 --- a/t/perf/p5326-multi-pack-bitmaps.sh +++ b/t/perf/p5326-multi-pack-bitmaps.sh @@ -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' ' |
