]> git.ipfire.org Git - thirdparty/git.git/blob - t/helper/test-tool.c
The sixth batch
[thirdparty/git.git] / t / helper / test-tool.c
1 #include "git-compat-util.h"
2 #include "test-tool.h"
3 #include "test-tool-utils.h"
4 #include "trace2.h"
5 #include "parse-options.h"
6
7 static const char * const test_tool_usage[] = {
8 "test-tool [-C <directory>] <command [<arguments>...]]",
9 NULL
10 };
11
12 static struct test_cmd cmds[] = {
13 { "advise", cmd__advise_if_enabled },
14 { "bitmap", cmd__bitmap },
15 { "bloom", cmd__bloom },
16 { "bundle-uri", cmd__bundle_uri },
17 { "cache-tree", cmd__cache_tree },
18 { "chmtime", cmd__chmtime },
19 { "config", cmd__config },
20 { "crontab", cmd__crontab },
21 { "csprng", cmd__csprng },
22 { "date", cmd__date },
23 { "delete-gpgsig", cmd__delete_gpgsig },
24 { "delta", cmd__delta },
25 { "dir-iterator", cmd__dir_iterator },
26 { "drop-caches", cmd__drop_caches },
27 { "dump-cache-tree", cmd__dump_cache_tree },
28 { "dump-fsmonitor", cmd__dump_fsmonitor },
29 { "dump-split-index", cmd__dump_split_index },
30 { "dump-untracked-cache", cmd__dump_untracked_cache },
31 { "env-helper", cmd__env_helper },
32 { "example-decorate", cmd__example_decorate },
33 { "example-tap", cmd__example_tap },
34 { "find-pack", cmd__find_pack },
35 { "fsmonitor-client", cmd__fsmonitor_client },
36 { "genrandom", cmd__genrandom },
37 { "genzeros", cmd__genzeros },
38 { "getcwd", cmd__getcwd },
39 { "hashmap", cmd__hashmap },
40 { "hash-speed", cmd__hash_speed },
41 { "hexdump", cmd__hexdump },
42 { "json-writer", cmd__json_writer },
43 { "lazy-init-name-hash", cmd__lazy_init_name_hash },
44 { "match-trees", cmd__match_trees },
45 { "mergesort", cmd__mergesort },
46 { "mktemp", cmd__mktemp },
47 { "oid-array", cmd__oid_array },
48 { "oidmap", cmd__oidmap },
49 { "oidtree", cmd__oidtree },
50 { "online-cpus", cmd__online_cpus },
51 { "pack-mtimes", cmd__pack_mtimes },
52 { "parse-options", cmd__parse_options },
53 { "parse-options-flags", cmd__parse_options_flags },
54 { "parse-pathspec-file", cmd__parse_pathspec_file },
55 { "parse-subcommand", cmd__parse_subcommand },
56 { "partial-clone", cmd__partial_clone },
57 { "path-utils", cmd__path_utils },
58 { "pcre2-config", cmd__pcre2_config },
59 { "pkt-line", cmd__pkt_line },
60 { "proc-receive", cmd__proc_receive },
61 { "progress", cmd__progress },
62 { "reach", cmd__reach },
63 { "read-cache", cmd__read_cache },
64 { "read-graph", cmd__read_graph },
65 { "read-midx", cmd__read_midx },
66 { "ref-store", cmd__ref_store },
67 { "reftable", cmd__reftable },
68 { "rot13-filter", cmd__rot13_filter },
69 { "dump-reftable", cmd__dump_reftable },
70 { "regex", cmd__regex },
71 { "repository", cmd__repository },
72 { "revision-walking", cmd__revision_walking },
73 { "run-command", cmd__run_command },
74 { "scrap-cache-tree", cmd__scrap_cache_tree },
75 { "serve-v2", cmd__serve_v2 },
76 { "sha1", cmd__sha1 },
77 { "sha1-is-sha1dc", cmd__sha1_is_sha1dc },
78 { "sha256", cmd__sha256 },
79 { "sigchain", cmd__sigchain },
80 { "simple-ipc", cmd__simple_ipc },
81 { "strcmp-offset", cmd__strcmp_offset },
82 { "string-list", cmd__string_list },
83 { "submodule", cmd__submodule },
84 { "submodule-config", cmd__submodule_config },
85 { "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
86 { "subprocess", cmd__subprocess },
87 { "trace2", cmd__trace2 },
88 { "truncate", cmd__truncate },
89 { "userdiff", cmd__userdiff },
90 { "urlmatch-normalization", cmd__urlmatch_normalization },
91 { "xml-encode", cmd__xml_encode },
92 { "wildmatch", cmd__wildmatch },
93 #ifdef GIT_WINDOWS_NATIVE
94 { "windows-named-pipe", cmd__windows_named_pipe },
95 #endif
96 { "write-cache", cmd__write_cache },
97 };
98
99 static NORETURN void die_usage(void)
100 {
101 size_t i;
102
103 fprintf(stderr, "usage: test-tool <toolname> [args]\n");
104 for (i = 0; i < ARRAY_SIZE(cmds); i++)
105 fprintf(stderr, " %s\n", cmds[i].name);
106 exit(128);
107 }
108
109 int cmd_main(int argc, const char **argv)
110 {
111 int i;
112 const char *working_directory = NULL;
113 struct option options[] = {
114 OPT_STRING('C', NULL, &working_directory, "directory",
115 "change the working directory"),
116 OPT_END()
117 };
118
119 BUG_exit_code = 99;
120 argc = parse_options(argc, argv, NULL, options, test_tool_usage,
121 PARSE_OPT_STOP_AT_NON_OPTION |
122 PARSE_OPT_KEEP_ARGV0);
123
124 if (argc < 2)
125 die_usage();
126
127 if (working_directory && chdir(working_directory) < 0)
128 die("Could not cd to '%s'", working_directory);
129
130 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
131 if (!strcmp(cmds[i].name, argv[1])) {
132 argv++;
133 argc--;
134 trace2_cmd_name(cmds[i].name);
135 trace2_cmd_list_config();
136 trace2_cmd_list_env_vars();
137 return cmds[i].fn(argc, argv);
138 }
139 }
140 error("there is no tool named '%s'", argv[1]);
141 die_usage();
142 }