From: Christian Couder Date: Thu, 25 Dec 2014 18:25:33 +0000 (+0100) Subject: bisect: add test to check that revs are properly parsed X-Git-Tag: v2.3.0-rc0~9^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07913d5ae15d7f583a506ce991a6b88761e600e2;p=thirdparty%2Fgit.git bisect: add test to check that revs are properly parsed Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh index 064f5cefeb..e6abe65d5c 100755 --- a/t/t6030-bisect-porcelain.sh +++ b/t/t6030-bisect-porcelain.sh @@ -779,4 +779,13 @@ test_expect_success 'bisect log: only skip commits left' ' git bisect reset ' +test_expect_success '"git bisect bad HEAD" behaves as "git bisect bad"' ' + git checkout parallel && + git bisect start HEAD $HASH1 && + git bisect good HEAD && + git bisect bad HEAD && + test "$HASH6" = $(git rev-parse --verify HEAD) && + git bisect reset +' + test_done