about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/nested-subshell.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/chainlint/nested-subshell.test')
-rw-r--r--third_party/git/t/chainlint/nested-subshell.test14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/git/t/chainlint/nested-subshell.test b/third_party/git/t/chainlint/nested-subshell.test
new file mode 100644
index 000000000000..998b05a47d30
--- /dev/null
+++ b/third_party/git/t/chainlint/nested-subshell.test
@@ -0,0 +1,14 @@
+(
+	cd foo &&
+	(
+		echo a &&
+		echo b
+	) >file &&
+
+	cd foo &&
+	(
+# LINT: nested multi-line subshell not presently checked for missing "&&"
+		echo a
+		echo b
+	) >file
+)