]> git.ipfire.org Git - thirdparty/git.git/blob - t/helper/test-tool.c
test_i18ngrep: hard deprecate and forbid its use
[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 { "ctype", cmd__ctype },
23 { "date", cmd__date },
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 { "fast-rebase", cmd__fast_rebase },
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 { "prio-queue", cmd__prio_queue },
61 { "proc-receive", cmd__proc_receive },
62 { "progress", cmd__progress },
63 { "reach", cmd__reach },
64 { "read-cache", cmd__read_cache },
65 { "read-graph", cmd__read_graph },
66 { "read-midx", cmd__read_midx },
67 { "ref-store", cmd__ref_store },
68 { "reftable", cmd__reftable },
69 { "rot13-filter", cmd__rot13_filter },
70 { "dump-reftable", cmd__dump_reftable },
71 { "regex", cmd__regex },
72 { "repository", cmd__repository },
73 { "revision-walking", cmd__revision_walking },
74 { "run-command", cmd__run_command },
75 { "scrap-cache-tree", cmd__scrap_cache_tree },
76 { "serve-v2", cmd__serve_v2 },
77 { "sha1", cmd__sha1 },
78 { "sha1-is-sha1dc", cmd__sha1_is_sha1dc },
79 { "sha256", cmd__sha256 },
80 { "sigchain", cmd__sigchain },
81 { "simple-ipc", cmd__simple_ipc },
82 { "strcmp-offset", cmd__strcmp_offset },
83 { "string-list", cmd__string_list },
84 { "submodule", cmd__submodule },
85 { "submodule-config", cmd__submodule_config },
86 { "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
87 { "subprocess", cmd__subprocess },
88 { "trace2", cmd__trace2 },
89 { "truncate", cmd__truncate },
90 { "userdiff", cmd__userdiff },
91 { "urlmatch-normalization", cmd__urlmatch_normalization },
92 { "xml-encode", cmd__xml_encode },
93 { "wildmatch", cmd__wildmatch },
94 #ifdef GIT_WINDOWS_NATIVE
95 { "windows-named-pipe", cmd__windows_named_pipe },
96 #endif
97 { "write-cache", cmd__write_cache },
98 };
99
100 static NORETURN void die_usage(void)
101 {
102 size_t i;
103
104 fprintf(stderr, "usage: test-tool <toolname> [args]\n");
105 for (i = 0; i < ARRAY_SIZE(cmds); i++)
106 fprintf(stderr, " %s\n", cmds[i].name);
107 exit(128);
108 }
109
110 int cmd_main(int argc, const char **argv)
111 {
112 int i;
113 const char *working_directory = NULL;
114 struct option options[] = {
115 OPT_STRING('C', NULL, &working_directory, "directory",
116 "change the working directory"),
117 OPT_END()
118 };
119
120 BUG_exit_code = 99;
121 argc = parse_options(argc, argv, NULL, options, test_tool_usage,
122 PARSE_OPT_STOP_AT_NON_OPTION |
123 PARSE_OPT_KEEP_ARGV0);
124
125 if (argc < 2)
126 die_usage();
127
128 if (working_directory && chdir(working_directory) < 0)
129 die("Could not cd to '%s'", working_directory);
130
131 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
132 if (!strcmp(cmds[i].name, argv[1])) {
133 argv++;
134 argc--;
135 trace2_cmd_name(cmds[i].name);
136 trace2_cmd_list_config();
137 trace2_cmd_list_env_vars();
138 return cmds[i].fn(argc, argv);
139 }
140 }
141 error("there is no tool named '%s'", argv[1]);
142 die_usage();
143 }