summaryrefslogtreecommitdiff
path: root/t/chainlint/here-doc-body-pathological.test
blob: 7d2daa44f93275d4bc09f3819dd7315022824d95 (plain)
1
2
3
4
5
6
7
8
9
test_expect_success 'here-doc-body-pathological' - <<\EOF
	echo "outer here-doc does not allow indented end-tag"
	cat >file <<-\EOF &&
	but this inner here-doc
	does allow indented EOF
	EOF
	echo "missing chain after"
	echo "but this line is OK because it's the end"
EOF