about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/nested-cuddled-subshell.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/chainlint/nested-cuddled-subshell.test')
-rw-r--r--third_party/git/t/chainlint/nested-cuddled-subshell.test31
1 files changed, 0 insertions, 31 deletions
diff --git a/third_party/git/t/chainlint/nested-cuddled-subshell.test b/third_party/git/t/chainlint/nested-cuddled-subshell.test
deleted file mode 100644
index 8fd656c7b5..0000000000
--- a/third_party/git/t/chainlint/nested-cuddled-subshell.test
+++ /dev/null
@@ -1,31 +0,0 @@
-(
-# LINT: opening "(" cuddled with first nested subshell statement
-	(cd foo &&
-		bar
-	) &&
-
-# LINT: same but "&&" missing
-	(cd foo &&
-		bar
-	)
-
-# LINT: closing ")" cuddled with final nested subshell statement
-	(
-		cd foo &&
-		bar) &&
-
-# LINT: same but "&&" missing
-	(
-		cd foo &&
-		bar)
-
-# LINT: "(" and ")" cuddled with first and final subshell statements
-	(cd foo &&
-		bar) &&
-
-# LINT: same but "&&" missing
-	(cd foo &&
-		bar)
-
-	foobar
-)