diff options
author | Derrick Stolee <stolee@gmail.com> | 2018-07-12 15:39:30 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-20 11:27:28 -0700 |
commit | 0d5b3a5ef72383f3b6fe93793be3bbd107a88eaa (patch) | |
tree | 0db83867d4bf65840e8bba0151f38a172ec0eb3f /t/helper | |
parent | midx: sort and deduplicate objects from packfiles (diff) | |
download | tgif-0d5b3a5ef72383f3b6fe93793be3bbd107a88eaa.tar.xz |
midx: write object ids in a chunk
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-read-midx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/helper/test-read-midx.c b/t/helper/test-read-midx.c index 76a60d7882..de6d452a7c 100644 --- a/t/helper/test-read-midx.c +++ b/t/helper/test-read-midx.c @@ -22,6 +22,8 @@ static int read_midx_file(const char *object_dir) if (m->chunk_pack_names) printf(" pack-names"); + if (m->chunk_oid_lookup) + printf(" oid-lookup"); printf("\n"); |