about summary refs log tree commit diff
path: root/third_party/git/t/chainlint/loop-in-if.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/chainlint/loop-in-if.test')
-rw-r--r--third_party/git/t/chainlint/loop-in-if.test15
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/git/t/chainlint/loop-in-if.test b/third_party/git/t/chainlint/loop-in-if.test
deleted file mode 100644
index 93e8ba8e4d..0000000000
--- a/third_party/git/t/chainlint/loop-in-if.test
+++ /dev/null
@@ -1,15 +0,0 @@
-(
-	if true
-	then
-		while true
-		do
-# LINT: missing "&&" on 'echo'
-			echo "pop"
-			echo "glup"
-# LINT: missing "&&" on 'done'
-		done
-		foo
-# LINT: missing "&&" on 'fi'
-	fi
-	bar
-)