Fold test-absolute-path into test-path-utils
[gitweb.git] / t / t6030-bisect-porcelain.sh
index 05f1e15c34cab66743d48b365479a000d641b23b..933f5679831b1df3baac8164094b204a09fd7f16 100755 (executable)
@@ -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