| 1356 | } |
| 1357 | |
| 1358 | static int cmd_bisect__start(int argc, const char **argv, const char *prefix UNUSED, |
| 1359 | struct repository *repo UNUSED) |
| 1360 | { |
| 1361 | int res; |
| 1362 | struct bisect_terms terms = { 0 }; |
| 1363 | |
| 1364 | set_terms(&terms, "bad", "good"); |
| 1365 | res = bisect_start(&terms, argc, argv); |
| 1366 | free_terms(&terms); |
| 1367 | return res; |
| 1368 | } |
| 1369 | |
| 1370 | static int cmd_bisect__next(int argc, const char **argv UNUSED, const char *prefix, |
| 1371 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected