xref: /freebsd/bin/sh/tests/parser/heredoc13.0 (revision b0b1dbdd)
1# $FreeBSD$
2
3failures=0
4
5check() {
6	if ! eval "[ $* ]"; then
7		echo "Failed: $*"
8		: $((failures += 1))
9	fi
10}
11
12check '"$(cat <<""
13
14echo yes)" = "yes"'
15
16check '"$(cat <<""
17yes
18
19)" = "yes"'
20
21exit $((failures != 0))
22