diff options
Diffstat (limited to 'third_party/git/t/chainlint/semicolon.test')
-rw-r--r-- | third_party/git/t/chainlint/semicolon.test | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/third_party/git/t/chainlint/semicolon.test b/third_party/git/t/chainlint/semicolon.test deleted file mode 100644 index d82c8ebbc006..000000000000 --- a/third_party/git/t/chainlint/semicolon.test +++ /dev/null @@ -1,25 +0,0 @@ -( -# LINT: missing internal "&&" and ending "&&" - cat foo ; echo bar -# LINT: final statement before ")" only missing internal "&&" - cat foo ; echo bar -) && -( -# LINT: missing internal "&&" - cat foo ; echo bar && - cat foo ; echo bar -) && -( -# LINT: not fooled by semicolon in string - echo "foo; bar" && - cat foo; echo bar -) && -( -# LINT: unnecessary terminating semicolon - foo; -) && -(cd foo && - for i in a b c; do -# LINT: unnecessary terminating semicolon - echo; - done) |