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