Bisect: add a "bisect replay" test case.
[gitweb.git] / t / t6030-bisect-porcelain.sh
index db82259afe3f95d59d69225353b0d0b1aea4d472..16d0c4a90eca9ad866ed37294a17db65992fe4ef 100755 (executable)
@@ -167,6 +167,13 @@ test_expect_success 'bisect skip: add line and then a new test' '
        git bisect skip &&
        git bisect good > my_bisect_log.txt &&
        grep "$HASH5 is first bad commit" my_bisect_log.txt &&
+       git bisect log > log_to_replay.txt
+       git bisect reset
+'
+
+test_expect_success 'bisect skip and bisect replay' '
+       git bisect replay log_to_replay.txt > my_bisect_log.txt &&
+       grep "$HASH5 is first bad commit" my_bisect_log.txt &&
        git bisect reset
 '