summaryrefslogtreecommitdiff
path: root/t/chainlint/exit-subshell.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/exit-subshell.test')
-rw-r--r--t/chainlint/exit-subshell.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/chainlint/exit-subshell.test b/t/chainlint/exit-subshell.test
new file mode 100644
index 0000000000..05dff55cd7
--- /dev/null
+++ b/t/chainlint/exit-subshell.test
@@ -0,0 +1,8 @@
+test_expect_success 'exit-subshell' '
+(
+# LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
+ foo || exit 1
+ bar &&
+ baz
+)
+'