8 lines
141 B
Text
8 lines
141 B
Text
test_expect_success 'exit-subshell' '
|
|
(
|
|
# LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
|
|
foo || exit 1
|
|
bar &&
|
|
baz
|
|
)
|
|
'
|