t/helper: merge test-lazy-init-name-hash into test-tool
[git] / t / helper / test-tool.c
1 #include "git-compat-util.h"
2 #include "test-tool.h"
3
4 struct test_cmd {
5         const char *name;
6         int (*fn)(int argc, const char **argv);
7 };
8
9 static struct test_cmd cmds[] = {
10         { "chmtime", cmd__chmtime },
11         { "lazy-init-name-hash", cmd__lazy_init_name_hash },
12         { "sha1", cmd__sha1 },
13 };
14
15 int cmd_main(int argc, const char **argv)
16 {
17         int i;
18
19         if (argc < 2)
20                 die("I need a test name!");
21
22         for (i = 0; i < ARRAY_SIZE(cmds); i++) {
23                 if (!strcmp(cmds[i].name, argv[1])) {
24                         argv++;
25                         argc--;
26                         return cmds[i].fn(argc, argv);
27                 }
28         }
29         die("There is no test named '%s'", argv[1]);
30 }