| 654 | } |
| 655 | |
| 656 | static struct commit_list *managed_skipped(struct commit_list *list, |
| 657 | struct commit_list **tried) |
| 658 | { |
| 659 | int count, skipped_first; |
| 660 | |
| 661 | *tried = NULL; |
| 662 | |
| 663 | if (!skipped_revs.nr) |
| 664 | return list; |
| 665 | |
| 666 | list = filter_skipped(list, tried, 0, &count, &skipped_first); |
| 667 | |
| 668 | if (!skipped_first) |
| 669 | return list; |
| 670 | |
| 671 | return skip_away(list, count); |
| 672 | } |
| 673 | |
| 674 | static void bisect_rev_setup(struct repository *r, struct rev_info *revs, |
| 675 | struct strvec *rev_argv, |
no test coverage detected