branch: add test for -m renaming multiple config sections
[git.git] / t / helper / test-read-cache.c
blob48255eef31a1e83d9a2bbb01670ba089a11c91f8
1 #include "cache.h"
3 int cmd_main(int argc, const char **argv)
5 int i, cnt = 1;
6 if (argc == 2)
7 cnt = strtol(argv[1], NULL, 0);
8 setup_git_directory();
9 for (i = 0; i < cnt; i++) {
10 read_cache();
11 discard_cache();
13 return 0;