| 697 | } |
| 698 | |
| 699 | static void bisect_common(struct rev_info *revs) |
| 700 | { |
| 701 | if (prepare_revision_walk(revs)) |
| 702 | die("revision walk setup failed"); |
| 703 | if (revs->tree_objects) |
| 704 | mark_edges_uninteresting(revs, NULL, 0); |
| 705 | } |
| 706 | |
| 707 | static enum bisect_error error_if_skipped_commits(struct commit_list *tried, |
| 708 | const struct object_id *bad) |
no test coverage detected