Fourth batch
[git/raj.git] / t / helper / test-tool.c
blob590b2efca705c57a6f9df1df42163588429a918a
1 #include "git-compat-util.h"
2 #include "test-tool.h"
3 #include "trace2.h"
4 #include "parse-options.h"
6 static const char * const test_tool_usage[] = {
7 "test-tool [-C <directory>] <command [<arguments>...]]",
8 NULL
9 };
11 struct test_cmd {
12 const char *name;
13 int (*fn)(int argc, const char **argv);
16 static struct test_cmd cmds[] = {
17 { "advise", cmd__advise_if_enabled },
18 { "bloom", cmd__bloom },
19 { "chmtime", cmd__chmtime },
20 { "config", cmd__config },
21 { "ctype", cmd__ctype },
22 { "date", cmd__date },
23 { "delta", cmd__delta },
24 { "dir-iterator", cmd__dir_iterator },
25 { "drop-caches", cmd__drop_caches },
26 { "dump-cache-tree", cmd__dump_cache_tree },
27 { "dump-fsmonitor", cmd__dump_fsmonitor },
28 { "dump-split-index", cmd__dump_split_index },
29 { "dump-untracked-cache", cmd__dump_untracked_cache },
30 { "example-decorate", cmd__example_decorate },
31 { "genrandom", cmd__genrandom },
32 { "genzeros", cmd__genzeros },
33 { "hashmap", cmd__hashmap },
34 { "hash-speed", cmd__hash_speed },
35 { "index-version", cmd__index_version },
36 { "json-writer", cmd__json_writer },
37 { "lazy-init-name-hash", cmd__lazy_init_name_hash },
38 { "match-trees", cmd__match_trees },
39 { "mergesort", cmd__mergesort },
40 { "mktemp", cmd__mktemp },
41 { "oid-array", cmd__oid_array },
42 { "oidmap", cmd__oidmap },
43 { "online-cpus", cmd__online_cpus },
44 { "parse-options", cmd__parse_options },
45 { "parse-pathspec-file", cmd__parse_pathspec_file },
46 { "path-utils", cmd__path_utils },
47 { "pkt-line", cmd__pkt_line },
48 { "prio-queue", cmd__prio_queue },
49 { "progress", cmd__progress },
50 { "reach", cmd__reach },
51 { "read-cache", cmd__read_cache },
52 { "read-graph", cmd__read_graph },
53 { "read-midx", cmd__read_midx },
54 { "ref-store", cmd__ref_store },
55 { "regex", cmd__regex },
56 { "repository", cmd__repository },
57 { "revision-walking", cmd__revision_walking },
58 { "run-command", cmd__run_command },
59 { "scrap-cache-tree", cmd__scrap_cache_tree },
60 { "serve-v2", cmd__serve_v2 },
61 { "sha1", cmd__sha1 },
62 { "sha256", cmd__sha256 },
63 { "sigchain", cmd__sigchain },
64 { "strcmp-offset", cmd__strcmp_offset },
65 { "string-list", cmd__string_list },
66 { "submodule-config", cmd__submodule_config },
67 { "submodule-nested-repo-config", cmd__submodule_nested_repo_config },
68 { "subprocess", cmd__subprocess },
69 { "trace2", cmd__trace2 },
70 { "urlmatch-normalization", cmd__urlmatch_normalization },
71 { "xml-encode", cmd__xml_encode },
72 { "wildmatch", cmd__wildmatch },
73 #ifdef GIT_WINDOWS_NATIVE
74 { "windows-named-pipe", cmd__windows_named_pipe },
75 #endif
76 { "write-cache", cmd__write_cache },
79 static NORETURN void die_usage(void)
81 size_t i;
83 fprintf(stderr, "usage: test-tool <toolname> [args]\n");
84 for (i = 0; i < ARRAY_SIZE(cmds); i++)
85 fprintf(stderr, " %s\n", cmds[i].name);
86 exit(128);
89 int cmd_main(int argc, const char **argv)
91 int i;
92 const char *working_directory = NULL;
93 struct option options[] = {
94 OPT_STRING('C', NULL, &working_directory, "directory",
95 "change the working directory"),
96 OPT_END()
99 BUG_exit_code = 99;
100 argc = parse_options(argc, argv, NULL, options, test_tool_usage,
101 PARSE_OPT_STOP_AT_NON_OPTION |
102 PARSE_OPT_KEEP_ARGV0);
104 if (argc < 2)
105 die_usage();
107 if (working_directory && chdir(working_directory) < 0)
108 die("Could not cd to '%s'", working_directory);
110 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
111 if (!strcmp(cmds[i].name, argv[1])) {
112 argv++;
113 argc--;
114 trace2_cmd_name(cmds[i].name);
115 trace2_cmd_list_config();
116 trace2_cmd_list_env_vars();
117 return cmds[i].fn(argc, argv);
120 error("there is no tool named '%s'", argv[1]);
121 die_usage();