aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-05-26 19:15:03 -0700
committerJunio C Hamano <gitster@pobox.com>2008-05-26 19:15:03 -0700
commit109440c1bf2a3015cd9253515f07231c4cf9d65a (patch)
tree356abfc21c6afc50e660abbea2b8bb373c14d03d /t
parentdf2740b066b2d6649449f2d8efdd0727647ab57c (diff)
parent42ba5ee776c00369ca72b76537ae622611a7b545 (diff)
downloadgit-109440c1bf2a3015cd9253515f07231c4cf9d65a.tar.gz
git-109440c1bf2a3015cd9253515f07231c4cf9d65a.tar.xz
Merge branch 'gp/bisect-fix' into maint
* gp/bisect-fix: bisect: print an error message when "git rev-list --bisect-vars" fails git-bisect.sh: don't accidentally override existing branch "bisect"
Diffstat (limited to 't')
-rwxr-xr-xt/t6030-bisect-porcelain.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh
index 5e3e5445c..933f56798 100755
--- a/t/t6030-bisect-porcelain.sh
+++ b/t/t6030-bisect-porcelain.sh
@@ -284,6 +284,31 @@ test_expect_success 'bisect starting with a detached HEAD' '
'
+test_expect_success 'bisect refuses to start if branch bisect exists' '
+ git bisect reset &&
+ git branch bisect &&
+ test_must_fail git bisect start &&
+ git branch -d bisect &&
+ git checkout -b bisect &&
+ test_must_fail git bisect start &&
+ git checkout master &&
+ git branch -d bisect
+'
+
+test_expect_success 'bisect refuses to start if branch new-bisect exists' '
+ git bisect reset &&
+ git branch new-bisect &&
+ test_must_fail git bisect start &&
+ 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