summaryrefslogtreecommitdiff
path: root/t/chainlint/here-doc-multi-line-string.test
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-08-20 11:33:53 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-08-20 11:33:53 -0700
commitace1f99cc8cf0a688f36c094552f90a398eb137f (patch)
tree09e7c492f8cae8e078ff91df706901308c8504fc /t/chainlint/here-doc-multi-line-string.test
parentMerge branch 'sg/t5310-empty-input-fix' (diff)
parentchainlint: add test of pathological case which triggered false positive (diff)
downloadtgif-ace1f99cc8cf0a688f36c094552f90a398eb137f.tar.xz
Merge branch 'es/chain-lint-more'
Improve built-in facility to catch broken &&-chain in the tests. * es/chain-lint-more: chainlint: add test of pathological case which triggered false positive chainlint: recognize multi-line quoted strings more robustly chainlint: let here-doc and multi-line string commence on same line chainlint: recognize multi-line $(...) when command cuddled with "$(" chainlint: match 'quoted' here-doc tags chainlint: match arbitrary here-docs tags rather than hard-coded names
Diffstat (limited to 't/chainlint/here-doc-multi-line-string.test')
-rw-r--r--t/chainlint/here-doc-multi-line-string.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/chainlint/here-doc-multi-line-string.test b/t/chainlint/here-doc-multi-line-string.test
new file mode 100644
index 0000000000..a53edbcc8d
--- /dev/null
+++ b/t/chainlint/here-doc-multi-line-string.test
@@ -0,0 +1,8 @@
+(
+# LINT: line contains here-doc and opens multi-line string
+ cat <<-\TXT && echo "multi-line
+ string"
+ fizzle
+ TXT
+ bap
+)