| 1404 | } |
| 1405 | |
| 1406 | static int cmd_bisect__skip(int argc, const char **argv, const char *prefix UNUSED, |
| 1407 | struct repository *repo UNUSED) |
| 1408 | { |
| 1409 | int res; |
| 1410 | struct bisect_terms terms = { 0 }; |
| 1411 | |
| 1412 | set_terms(&terms, "bad", "good"); |
| 1413 | get_terms(&terms); |
| 1414 | res = bisect_skip(&terms, argc, argv); |
| 1415 | free_terms(&terms); |
| 1416 | return res; |
| 1417 | } |
| 1418 | |
| 1419 | static int cmd_bisect__visualize(int argc, const char **argv, const char *prefix UNUSED, |
| 1420 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected