hash-ll.h: split out of hash.h to remove dependency on repository.h
[alt-git.git] / t / helper / test-dump-fsmonitor.c
blob6dc495833758d2fbb63997438c1edfbb90c30bff
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "repository.h"
4 #include "setup.h"
6 int cmd__dump_fsmonitor(int ac, const char **av)
8 struct index_state *istate = the_repository->index;
9 int i;
11 setup_git_directory();
12 if (do_read_index(istate, the_repository->index_file, 0) < 0)
13 die("unable to read index file");
14 if (!istate->fsmonitor_last_update) {
15 printf("no fsmonitor\n");
16 return 0;
18 printf("fsmonitor last update %s\n", istate->fsmonitor_last_update);
20 for (i = 0; i < istate->cache_nr; i++)
21 printf((istate->cache[i]->ce_flags & CE_FSMONITOR_VALID) ? "+" : "-");
23 return 0;