| 64 | } |
| 65 | |
| 66 | static int cmd__submodule_check_name(int argc, const char **argv) |
| 67 | { |
| 68 | struct option options[] = { |
| 69 | OPT_END() |
| 70 | }; |
| 71 | argc = parse_options(argc, argv, "test-tools", options, |
| 72 | submodule_check_name_usage, 0); |
| 73 | if (argc) |
| 74 | usage_with_options(submodule_check_name_usage, options); |
| 75 | |
| 76 | return check_submodule(check_submodule_name); |
| 77 | } |
| 78 | |
| 79 | static int cmd__submodule_check_url(int argc, const char **argv) |
| 80 | { |
nothing calls this directly
no test coverage detected