Start the 2.48 cycle
[alt-git.git] / t / helper / test-tool.c
blob1ebb69a5dc4c1716fe21e1640eecf5f5f05c130d
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"
7 static const char * const test_tool_usage[] = {
8 "test-tool [-C <directory>] <command [<arguments>...]]",
9 NULL
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-reftable", cmd__dump_reftable },
30 { "dump-split-index", cmd__dump_split_index },
31 { "dump-untracked-cache", cmd__dump_untracked_cache },
32 { "env-helper", cmd__env_helper },
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 { "online-cpus", cmd__online_cpus },
48 { "pack-mtimes", cmd__pack_mtimes },
49 { "parse-options", cmd__parse_options },
50 { "parse-options-flags", cmd__parse_options_flags },
51 { "parse-pathspec-file", cmd__parse_pathspec_file },
52 { "parse-subcommand", cmd__parse_subcommand },
53 { "partial-clone", cmd__partial_clone },
54 { "path-utils", cmd__path_utils },
55 { "pcre2-config", cmd__pcre2_config },
56 { "pkt-line", cmd__pkt_line },
57 { "proc-receive", cmd__proc_receive },
58 { "progress", cmd__progress },
59 { "reach", cmd__reach },
60 { "read-cache", cmd__read_cache },
61 { "read-graph", cmd__read_graph },
62 { "read-midx", cmd__read_midx },
63 { "ref-store", cmd__ref_store },
64 { "rot13-filter", cmd__rot13_filter },
65 { "regex", cmd__regex },
66 { "repository", cmd__repository },
67 { "revision-walking", cmd__revision_walking },
68 { "run-command", cmd__run_command },
69 { "scrap-cache-tree", cmd__scrap_cache_tree },
70 { "serve-v2", cmd__serve_v2 },
71 { "sha1", cmd__sha1 },
72 { "sha1-is-sha1dc", cmd__sha1_is_sha1dc },
73 { "sha256", cmd__sha256 },
74 { "sigchain", cmd__sigchain },
75 { "simple-ipc", cmd__simple_ipc },
76 { "string-list", cmd__string_list },
77 { "submodule", cmd__submodule },
78 { "submodule-config", cmd__submodule_config },
79 { "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
80 { "subprocess", cmd__subprocess },
81 { "trace2", cmd__trace2 },
82 { "truncate", cmd__truncate },
83 { "userdiff", cmd__userdiff },
84 { "xml-encode", cmd__xml_encode },
85 { "wildmatch", cmd__wildmatch },
86 #ifdef GIT_WINDOWS_NATIVE
87 { "windows-named-pipe", cmd__windows_named_pipe },
88 #endif
89 { "write-cache", cmd__write_cache },
92 static NORETURN void die_usage(void)
94 size_t i;
96 fprintf(stderr, "usage: test-tool <toolname> [args]\n");
97 for (i = 0; i < ARRAY_SIZE(cmds); i++)
98 fprintf(stderr, " %s\n", cmds[i].name);
99 exit(128);
102 int cmd_main(int argc, const char **argv)
104 int i;
105 const char *working_directory = NULL;
106 struct option options[] = {
107 OPT_STRING('C', NULL, &working_directory, "directory",
108 "change the working directory"),
109 OPT_END()
112 BUG_exit_code = 99;
113 argc = parse_options(argc, argv, NULL, options, test_tool_usage,
114 PARSE_OPT_STOP_AT_NON_OPTION |
115 PARSE_OPT_KEEP_ARGV0);
117 if (argc < 2)
118 die_usage();
120 if (working_directory && chdir(working_directory) < 0)
121 die("Could not cd to '%s'", working_directory);
123 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
124 if (!strcmp(cmds[i].name, argv[1])) {
125 argv++;
126 argc--;
127 trace2_cmd_name(cmds[i].name);
128 trace2_cmd_list_config();
129 trace2_cmd_list_env_vars();
130 return cmds[i].fn(argc, argv);
133 error("there is no tool named '%s'", argv[1]);
134 die_usage();