diff options
author | Taylor Blau <me@ttaylorr.com> | 2021-03-31 21:32:11 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-03-31 23:14:03 -0700 |
commit | 483fa7f42d9e7723154aa1baa6e1576cf51cc64b (patch) | |
tree | 589b0a6fe367a6e9ece7e5b4c49860b7e5bff835 /Makefile | |
parent | pack-bitmap: add 'test_bitmap_commits()' helper (diff) | |
download | tgif-483fa7f42d9e7723154aa1baa6e1576cf51cc64b.tar.xz |
t/helper/test-bitmap.c: initial commit
Add a new 'bitmap' test-tool which can be used to list the commits that
have received bitmaps.
In theory, a determined tester could run 'git rev-list --test-bitmap
<commit>' to check if '<commit>' received a bitmap or not, since
'--test-bitmap' exits with a non-zero code when it can't find the
requested commit.
But this is a dubious behavior to rely on, since arguably 'git
rev-list' could continue its object walk outside of which commits are
covered by bitmaps.
This will be used to test the behavior of 'pack.preferBitmapTips', which
will be added in the following patch.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -693,6 +693,7 @@ X = PROGRAMS += $(patsubst %.o,git-%$X,$(PROGRAM_OBJS)) TEST_BUILTINS_OBJS += test-advise.o +TEST_BUILTINS_OBJS += test-bitmap.o TEST_BUILTINS_OBJS += test-bloom.o TEST_BUILTINS_OBJS += test-chmtime.o TEST_BUILTINS_OBJS += test-config.o |