summaryrefslogtreecommitdiff
path: root/t/t6030-bisect-porcelain.sh
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2008-05-07 21:54:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-05-09 00:50:00 (GMT)
commit42ba5ee776c00369ca72b76537ae622611a7b545 (patch)
tree2ea75a8c647237a592387e5b4e6aec2ab3904863 /t/t6030-bisect-porcelain.sh
parentee831f7ddfc40e9144208c93e24d20ff0ad69194 (diff)
downloadgit-42ba5ee776c00369ca72b76537ae622611a7b545.zip
git-42ba5ee776c00369ca72b76537ae622611a7b545.tar.gz
git-42ba5ee776c00369ca72b76537ae622611a7b545.tar.bz2
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-xt/t6030-bisect-porcelain.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh
index 05f1e15..933f567 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