aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-05-12 15:44:43 -0700
committerJunio C Hamano <gitster@pobox.com>2008-05-12 15:44:43 -0700
commiteafa29b7cb27fa0e14d9629e66d6866292620113 (patch)
tree2dfc167d2e661178dab11c4321481e5a9d432e72 /t
parent65ea3b8c6d9517c5d7f2a6c089cc6578c9486114 (diff)
parent42ba5ee776c00369ca72b76537ae622611a7b545 (diff)
downloadgit-eafa29b7cb27fa0e14d9629e66d6866292620113.tar.gz
git-eafa29b7cb27fa0e14d9629e66d6866292620113.tar.xz
Merge branch 'gp/bisect-fix'
* 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