diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2008-05-07 23:54:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-08 17:50:00 -0700 |
commit | 42ba5ee776c00369ca72b76537ae622611a7b545 (patch) | |
tree | 2ea75a8c647237a592387e5b4e6aec2ab3904863 /t/t6030-bisect-porcelain.sh | |
parent | git-bisect.sh: don't accidentally override existing branch "bisect" (diff) | |
download | tgif-42ba5ee776c00369ca72b76537ae622611a7b545.tar.xz |
bisect: print an error message when "git rev-list --bisect-vars" fails
Before this patch no error was printed when "git rev-list --bisect-vars"
failed. This can happen when bad and good revs are mistaken.
This patch prints an error message on stderr that describe the likely
failure cause.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6030-bisect-porcelain.sh')
-rwxr-xr-x | t/t6030-bisect-porcelain.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh index 05f1e15c34..933f567983 100755 --- a/t/t6030-bisect-porcelain.sh +++ b/t/t6030-bisect-porcelain.sh @@ -302,6 +302,13 @@ test_expect_success 'bisect refuses to start if branch new-bisect exists' ' git branch -d new-bisect ' +test_expect_success 'bisect errors out if bad and good are mistaken' ' + git bisect reset && + test_must_fail git bisect start $HASH2 $HASH4 2> rev_list_error && + grep "mistake good and bad" rev_list_error && + git bisect reset +' + # # test_done |