]> git.ipfire.org Git - thirdparty/git.git/blame - t/helper/test-tool.c
submodule: support reading .gitmodules when it's not in the working tree
[thirdparty/git.git] / t / helper / test-tool.c
CommitLineData
efd71f89
NTND
1#include "git-compat-util.h"
2#include "test-tool.h"
3
4struct test_cmd {
5 const char *name;
6 int (*fn)(int argc, const char **argv);
7};
8
9static struct test_cmd cmds[] = {
0e496492 10 { "chmtime", cmd__chmtime },
0e2678af 11 { "config", cmd__config },
e4998944 12 { "ctype", cmd__ctype },
a801a7cf 13 { "date", cmd__date },
9153dde5 14 { "delta", cmd__delta },
1c854745 15 { "drop-caches", cmd__drop_caches },
06ccb29e 16 { "dump-cache-tree", cmd__dump_cache_tree },
8133061e 17 { "dump-split-index", cmd__dump_split_index },
dbceb3ec 18 { "example-decorate", cmd__example_decorate },
c680668d 19 { "genrandom", cmd__genrandom },
7c18cbd5 20 { "hashmap", cmd__hashmap },
cc6f663d 21 { "index-version", cmd__index_version },
75459410 22 { "json-writer", cmd__json_writer },
64eb82fe 23 { "lazy-init-name-hash", cmd__lazy_init_name_hash },
9080e75f 24 { "match-trees", cmd__match_trees },
34889d3c 25 { "mergesort", cmd__mergesort },
d9cc2c87 26 { "mktemp", cmd__mktemp },
c033cc15 27 { "online-cpus", cmd__online_cpus },
b8d5cf4f 28 { "path-utils", cmd__path_utils },
15b75817 29 { "prio-queue", cmd__prio_queue },
5fbe600c 30 { "read-cache", cmd__read_cache },
65370d81 31 { "ref-store", cmd__ref_store },
9038531f 32 { "regex", cmd__regex },
dade47c0 33 { "repository", cmd__repository },
77d4b8c8 34 { "revision-walking", cmd__revision_walking },
ae6a51f5 35 { "run-command", cmd__run_command },
ff5fb8b0 36 { "scrap-cache-tree", cmd__scrap_cache_tree },
aa218dff 37 { "sha1-array", cmd__sha1_array },
dae2ff9b 38 { "sha1", cmd__sha1 },
e154a6f3 39 { "sigchain", cmd__sigchain },
1a5f3d70 40 { "strcmp-offset", cmd__strcmp_offset },
c932a5ff 41 { "string-list", cmd__string_list },
b6188213 42 { "submodule-config", cmd__submodule_config },
112edd6a 43 { "subprocess", cmd__subprocess },
599fbd87 44 { "urlmatch-normalization", cmd__urlmatch_normalization },
0489289d 45 { "wildmatch", cmd__wildmatch },
c81f843d 46 { "write-cache", cmd__write_cache },
efd71f89
NTND
47};
48
49int cmd_main(int argc, const char **argv)
50{
51 int i;
52
a86303cb 53 BUG_exit_code = 99;
efd71f89
NTND
54 if (argc < 2)
55 die("I need a test name!");
56
57 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
58 if (!strcmp(cmds[i].name, argv[1])) {
59 argv++;
60 argc--;
61 return cmds[i].fn(argc, argv);
62 }
63 }
64 die("There is no test named '%s'", argv[1]);
65}