blob: d674c88ba092d60366a14eaeccc9f4bc6f32660c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "test-tool.h"
#include "cache.h"
int cmd__read_cache(int argc, const char **argv)
{
int i, cnt = 1;
if (argc == 2)
cnt = strtol(argv[1], NULL, 0);
setup_git_directory();
for (i = 0; i < cnt; i++) {
read_cache();
discard_cache();
}
return 0;
}
|