aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parser/heredoc5.0
blob: 0bcc6170a5d4f1bda08d97cceb164ed3d88b6933 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# $FreeBSD: head/bin/sh/tests/parser/heredoc5.0 208655 2010-05-30 14:11:27Z jilles $

failures=0

check() {
	if ! eval "[ $* ]"; then
		echo "Failed: $*"
		: $((failures += 1))
	fi
}

f() {
	cat <<EOF && echo `cat <<EOF
bar
EOF
`
foo
EOF
}
check '"`f`" = "foo
bar"'

f() {
	cat <<EOF && echo $(cat <<EOF
bar
EOF
)
foo
EOF
}
check '"$(f)" = "foo
bar"'

f() {
	echo `cat <<EOF
bar
EOF
` && cat <<EOF
foo
EOF
}
check '"`f`" = "bar
foo"'

f() {
	echo $(cat <<EOF
bar
EOF
) && cat <<EOF
foo
EOF
}
check '"$(f)" = "bar
foo"'

exit $((failures != 0))