]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/parser/heredoc13.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / parser / heredoc13.0
1 # $FreeBSD: head/bin/sh/tests/parser/heredoc13.0 287408 2015-09-02 19:49:55Z jilles $
2
3 failures=0
4
5 check() {
6 if ! eval "[ $* ]"; then
7 echo "Failed: $*"
8 : $((failures += 1))
9 fi
10 }
11
12 check '"$(cat <<""
13
14 echo yes)" = "yes"'
15
16 check '"$(cat <<""
17 yes
18
19 )" = "yes"'
20
21 exit $((failures != 0))