Merge branch 'en/header-split-cache-h-part-2'
[git.git] / t / helper / test-dump-fsmonitor.c
blob9a098a25cba7f32381d1a96459eb39434c1e5c16
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "repository.h"
4 #include "setup.h"
6 int cmd__dump_fsmonitor(int ac UNUSED, const char **av UNUSED)
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;