]> git.ipfire.org Git - thirdparty/git.git/blame - t/helper/test-tool.c
t/helper: merge test-dump-untracked-cache into test-tool
[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 },
cd780f0b 18 { "dump-untracked-cache", cmd__dump_untracked_cache },
dbceb3ec 19 { "example-decorate", cmd__example_decorate },
c680668d 20 { "genrandom", cmd__genrandom },
7c18cbd5 21 { "hashmap", cmd__hashmap },
cc6f663d 22 { "index-version", cmd__index_version },
75459410 23 { "json-writer", cmd__json_writer },
64eb82fe 24 { "lazy-init-name-hash", cmd__lazy_init_name_hash },
9080e75f 25 { "match-trees", cmd__match_trees },
34889d3c 26 { "mergesort", cmd__mergesort },
d9cc2c87 27 { "mktemp", cmd__mktemp },
c033cc15 28 { "online-cpus", cmd__online_cpus },
b8d5cf4f 29 { "path-utils", cmd__path_utils },
15b75817 30 { "prio-queue", cmd__prio_queue },
5fbe600c 31 { "read-cache", cmd__read_cache },
65370d81 32 { "ref-store", cmd__ref_store },
9038531f 33 { "regex", cmd__regex },
dade47c0 34 { "repository", cmd__repository },
77d4b8c8 35 { "revision-walking", cmd__revision_walking },
ae6a51f5 36 { "run-command", cmd__run_command },
ff5fb8b0 37 { "scrap-cache-tree", cmd__scrap_cache_tree },
dae2ff9b 38 { "sha1", cmd__sha1 },
a0fe6e6e 39 { "sha1-array", cmd__sha1_array },
e154a6f3 40 { "sigchain", cmd__sigchain },
1a5f3d70 41 { "strcmp-offset", cmd__strcmp_offset },
c932a5ff 42 { "string-list", cmd__string_list },
b6188213 43 { "submodule-config", cmd__submodule_config },
112edd6a 44 { "subprocess", cmd__subprocess },
599fbd87 45 { "urlmatch-normalization", cmd__urlmatch_normalization },
0489289d 46 { "wildmatch", cmd__wildmatch },
c81f843d 47 { "write-cache", cmd__write_cache },
efd71f89
NTND
48};
49
50int cmd_main(int argc, const char **argv)
51{
52 int i;
53
a86303cb 54 BUG_exit_code = 99;
efd71f89
NTND
55 if (argc < 2)
56 die("I need a test name!");
57
58 for (i = 0; i < ARRAY_SIZE(cmds); i++) {
59 if (!strcmp(cmds[i].name, argv[1])) {
60 argv++;
61 argc--;
62 return cmds[i].fn(argc, argv);
63 }
64 }
65 die("There is no test named '%s'", argv[1]);
66}