
Implement three new sub-commands for the "bitmap" test-helper: - t/helper test-tool bitmap dump-pseudo-merges - t/helper test-tool bitmap dump-pseudo-merge-commits <n> - t/helper test-tool bitmap dump-pseudo-merge-objects <n> These three helpers dump the list of pseudo merges, the "parents" of the nth pseudo-merges, and the set of objects reachable from those parents, respectively. These helpers will be useful in subsequent patches when we add test coverage for pseudo-merge bitmaps. Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
#include "test-tool.h"
|
|
#include "git-compat-util.h"
|
|
#include "pack-bitmap.h"
|
|
#include "setup.h"
|
|
|
|
static int bitmap_list_commits(void)
|
|
{
|
|
return test_bitmap_commits(the_repository);
|
|
}
|
|
|
|
static int bitmap_dump_hashes(void)
|
|
{
|
|
return test_bitmap_hashes(the_repository);
|
|
}
|
|
|
|
static int bitmap_dump_pseudo_merges(void)
|
|
{
|
|
return test_bitmap_pseudo_merges(the_repository);
|
|
}
|
|
|
|
static int bitmap_dump_pseudo_merge_commits(uint32_t n)
|
|
{
|
|
return test_bitmap_pseudo_merge_commits(the_repository, n);
|
|
}
|
|
|
|
static int bitmap_dump_pseudo_merge_objects(uint32_t n)
|
|
{
|
|
return test_bitmap_pseudo_merge_objects(the_repository, n);
|
|
}
|
|
|
|
int cmd__bitmap(int argc, const char **argv)
|
|
{
|
|
setup_git_directory();
|
|
|
|
if (argc == 2 && !strcmp(argv[1], "list-commits"))
|
|
return bitmap_list_commits();
|
|
if (argc == 2 && !strcmp(argv[1], "dump-hashes"))
|
|
return bitmap_dump_hashes();
|
|
if (argc == 2 && !strcmp(argv[1], "dump-pseudo-merges"))
|
|
return bitmap_dump_pseudo_merges();
|
|
if (argc == 3 && !strcmp(argv[1], "dump-pseudo-merge-commits"))
|
|
return bitmap_dump_pseudo_merge_commits(atoi(argv[2]));
|
|
if (argc == 3 && !strcmp(argv[1], "dump-pseudo-merge-objects"))
|
|
return bitmap_dump_pseudo_merge_objects(atoi(argv[2]));
|
|
|
|
usage("\ttest-tool bitmap list-commits\n"
|
|
"\ttest-tool bitmap dump-hashes\n"
|
|
"\ttest-tool bitmap dump-pseudo-merges\n"
|
|
"\ttest-tool bitmap dump-pseudo-merge-commits <n>\n"
|
|
"\ttest-tool bitmap dump-pseudo-merge-objects <n>");
|
|
|
|
return -1;
|
|
}
|