| 1417 | } |
| 1418 | |
| 1419 | static int cmd_bisect__visualize(int argc, const char **argv, const char *prefix UNUSED, |
| 1420 | struct repository *repo UNUSED) |
| 1421 | { |
| 1422 | int res; |
| 1423 | struct bisect_terms terms = { 0 }; |
| 1424 | |
| 1425 | get_terms(&terms); |
| 1426 | res = bisect_visualize(&terms, argc, argv); |
| 1427 | free_terms(&terms); |
| 1428 | return res; |
| 1429 | } |
| 1430 | |
| 1431 | static int cmd_bisect__run(int argc, const char **argv, const char *prefix UNUSED, |
| 1432 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected