]> git.ipfire.org Git - thirdparty/git.git/blob - t/helper/test-tool.c
Merge branch 'bc/sha-256'
[thirdparty/git.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 { "config", cmd__config },
12 { "ctype", cmd__ctype },
13 { "date", cmd__date },
14 { "delta", cmd__delta },
15 { "drop-caches", cmd__drop_caches },
16 { "dump-cache-tree", cmd__dump_cache_tree },
17 { "dump-fsmonitor", cmd__dump_fsmonitor },
18 { "dump-split-index", cmd__dump_split_index },
19 { "dump-untracked-cache", cmd__dump_untracked_cache },
20 { "example-decorate", cmd__example_decorate },
21 { "genrandom", cmd__genrandom },
22 { "hashmap", cmd__hashmap },
23 { "hash-speed", cmd__hash_speed },
24 { "index-version", cmd__index_version },
25 { "json-writer", cmd__json_writer },
26 { "lazy-init-name-hash", cmd__lazy_init_name_hash },
27 { "match-trees", cmd__match_trees },
28 { "mergesort", cmd__mergesort },
29 { "mktemp", cmd__mktemp },
30 { "online-cpus", cmd__online_cpus },
31 { "parse-options", cmd__parse_options },
32 { "path-utils", cmd__path_utils },
33 { "pkt-line", cmd__pkt_line },
34 { "prio-queue", cmd__prio_queue },
35 { "reach", cmd__reach },
36 { "read-cache", cmd__read_cache },
37 { "read-midx", cmd__read_midx },
38 { "ref-store", cmd__ref_store },
39 { "regex", cmd__regex },
40 { "repository", cmd__repository },
41 { "revision-walking", cmd__revision_walking },
42 { "run-command", cmd__run_command },
43 { "scrap-cache-tree", cmd__scrap_cache_tree },
44 { "sha1", cmd__sha1 },
45 { "sha1-array", cmd__sha1_array },
46 { "sha256", cmd__sha256 },
47 { "sigchain", cmd__sigchain },
48 { "strcmp-offset", cmd__strcmp_offset },
49 { "string-list", cmd__string_list },
50 { "submodule-config", cmd__submodule_config },
51 { "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
52 { "subprocess", cmd__subprocess },
53 { "urlmatch-normalization", cmd__urlmatch_normalization },
54 { "wildmatch", cmd__wildmatch },
55 #ifdef GIT_WINDOWS_NATIVE
56 { "windows-named-pipe", cmd__windows_named_pipe },
57 #endif
58 { "write-cache", cmd__write_cache },
59 };
60
61 static NORETURN void die_usage(void)
62 {
63 size_t i;
64
65 fprintf(stderr, "usage: test-tool <toolname> [args]\n");
66 for (i = 0; i < ARRAY_SIZE(cmds); i++)
67 fprintf(stderr, " %s\n", cmds[i].name);
68 exit(128);
69 }
70
71 int cmd_main(int argc, const char **argv)
72 {
73 int i;
74
75 BUG_exit_code = 99;
76 if (argc < 2)
77 die_usage();
78
79 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
80 if (!strcmp(cmds[i].name, argv[1])) {
81 argv++;
82 argc--;
83 return cmds[i].fn(argc, argv);
84 }
85 }
86 error("there is no tool named '%s'", argv[1]);
87 die_usage();
88 }