Re: [PATCH v2 06/21] bisect: add test for the bisect algorithm

2016-04-15 Thread Junio C Hamano
Stephan Beyer writes: > +test_expect_success 'bisect algorithm works in linear history with an odd > number of commits' ' > + git bisect start A7 && > + git bisect next && > + test_cmp_rev HEAD A3 A4 > +' > + > +test_expect_success 'bisect algorithm works in linear history with an ev

[PATCH v2 06/21] bisect: add test for the bisect algorithm

2016-04-10 Thread Stephan Beyer
Signed-off-by: Stephan Beyer --- Notes: Based on the review by Christian Couder, I use test_cmp_rev() instead of non-standard test ... -o ... t/t8010-bisect-algorithm.sh | 155 1 file changed, 155 insertions(+) create mode 100755 t/t8010-bis