Raw
1 test_expect_success 'exit-subshell' '
2 (
3 # LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
4 foo || exit 1
5 bar &&
6 baz
7 )
8 '