summaryrefslogtreecommitdiffstats
path: root/bin/sh/tests/parser/heredoc5.0
blob: 84b0eb2705d4ee359a1183bfa37663c43268e5aa (plain)
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$

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))
OpenPOWER on IntegriCloud