On Thu, Nov 18, 2021 at 10:39 AM Jan Kara <jack@xxxxxxx> wrote: > diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh > index f8cfdd3c36d2..13f7deea4d81 100755 > --- a/t/t6030-bisect-porcelain.sh > +++ b/t/t6030-bisect-porcelain.sh > @@ -240,8 +240,13 @@ test_expect_success 'bisect skip: cannot tell between 3 commits' ' > test_expect_success 'bisect skip: cannot tell between 2 commits' ' > test_when_finished git bisect reset && > git bisect start $HASH4 $HASH1 && > - git bisect skip && > - test_expect_code 2 git bisect good >my_bisect_log.txt && > + if [ $(git rev-parse HEAD) == $HASH2 ]; then > + results=('good' 'skip') > + else > + results=('skip' 'good') > + fi && > + git bisect ${results[0]} && > + test_expect_code 2 git bisect ${results[1]} >my_bisect_log.txt && These are also not available in old POSIX shell - consider using two separate variables to hold the two strings. Chris