We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62d0b0d commit a66037cCopy full SHA for a66037c
t/t6030-bisect-porcelain.sh
@@ -555,6 +555,18 @@ test_expect_success 'restricting bisection on one dir and a file' '
555
grep "$PARA_HASH4 is first bad commit" my_bisect_log.txt
556
'
557
558
+test_expect_success 'skipping away from skipped commit' '
559
+ git bisect start $PARA_HASH7 $HASH1 &&
560
+ para4=$(git rev-parse --verify HEAD) &&
561
+ test "$para4" = "$PARA_HASH4" &&
562
+ git bisect skip &&
563
+ hash7=$(git rev-parse --verify HEAD) &&
564
+ test "$hash7" = "$HASH7" &&
565
566
+ hash3=$(git rev-parse --verify HEAD) &&
567
+ test "$hash3" = "$HASH3"
568
+'
569
+
570
#
571
572
test_done
0 commit comments