mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-12 04:41:35 -06:00
Many test helper programs do not bother to look at argc or argv, because they don't take any options. In a user-facing program, it's a good idea to check for unexpected arguments and complain. But for a test helper, it's not worth the trouble to enforce this. But we do want to tell the compiler we're OK with ignoring them, to silence -Wunused-parameter (and obviously we can't get rid of them, since we have to conform to the usual cmd__foo() interface). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 lines
573 B
C
23 lines
573 B
C
#include "test-tool.h"
|
|
#include "cache.h"
|
|
|
|
int cmd__dump_fsmonitor(int ac UNUSED, const char **av UNUSED)
|
|
{
|
|
struct index_state *istate = the_repository->index;
|
|
int i;
|
|
|
|
setup_git_directory();
|
|
if (do_read_index(istate, the_repository->index_file, 0) < 0)
|
|
die("unable to read index file");
|
|
if (!istate->fsmonitor_last_update) {
|
|
printf("no fsmonitor\n");
|
|
return 0;
|
|
}
|
|
printf("fsmonitor last update %s\n", istate->fsmonitor_last_update);
|
|
|
|
for (i = 0; i < istate->cache_nr; i++)
|
|
printf((istate->cache[i]->ce_flags & CE_FSMONITOR_VALID) ? "+" : "-");
|
|
|
|
return 0;
|
|
}
|