Makefile: add QUIET_GEN to "cscope" target
[git/debian.git] / t / helper / test-bitmap.c
blob134a1e9d762ced9955b42bafa9b0b8287ac68753
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "pack-bitmap.h"
5 static int bitmap_list_commits(void)
7 return test_bitmap_commits(the_repository);
10 int cmd__bitmap(int argc, const char **argv)
12 setup_git_directory();
14 if (argc != 2)
15 goto usage;
17 if (!strcmp(argv[1], "list-commits"))
18 return bitmap_list_commits();
20 usage:
21 usage("\ttest-tool bitmap list-commits");
23 return -1;