diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2011-05-14 14:19:30 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2011-05-14 14:19:30 +0000 |
commit | d69e16c9777069b606e6d9415cb686ed4bdab95d (patch) | |
tree | 334dd234a59a8cce5b26b3db7ceeadc01fc7bfe3 | |
parent | b1865d53035f17946e6886fac4436d5d21c1d146 (diff) |
Notes
-rw-r--r-- | tools/regression/bin/sh/parser/heredoc10.0 | 49 | ||||
-rw-r--r-- | tools/regression/bin/sh/parser/heredoc9.0 | 58 |
2 files changed, 107 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/parser/heredoc10.0 b/tools/regression/bin/sh/parser/heredoc10.0 new file mode 100644 index 0000000000000..27369a0b1b4cc --- /dev/null +++ b/tools/regression/bin/sh/parser/heredoc10.0 @@ -0,0 +1,49 @@ +# $FreeBSD$ + +# It may be argued that +# x=$(cat <<EOF +# foo +# EOF) +# is a valid complete command that sets x to foo, because +# cat <<EOF +# foo +# EOF +# is a valid script even without the final newline. +# However, if the here-document is not within a new-style command substitution +# or there are other constructs nested inside the command substitution that +# need terminators, the delimiter at the start of a line followed by a close +# parenthesis is clearly a literal part of the here-document. + +# This file contains tests that may not work with simplistic $(...) parsers. +# The open parentheses in comments help mksh, but not zsh. + +failures=0 + +check() { + if ! eval "[ $* ]"; then + echo "Failed: $*" + : $((failures += 1)) + fi +} + +check '"$(cat <<EOF # ( +EOF ) +EOF +)" = "EOF )"' + +check '"$({ cat <<EOF # ( +EOF) +EOF +})" = "EOF)"' + +check '"$(if :; then cat <<EOF # ( +EOF) +EOF +fi)" = "EOF)"' + +check '"$( (cat <<EOF # ( +EOF) +EOF +))" = "EOF)"' + +exit $((failures != 0)) diff --git a/tools/regression/bin/sh/parser/heredoc9.0 b/tools/regression/bin/sh/parser/heredoc9.0 new file mode 100644 index 0000000000000..125a542ab717d --- /dev/null +++ b/tools/regression/bin/sh/parser/heredoc9.0 @@ -0,0 +1,58 @@ +# $FreeBSD$ + +# It may be argued that +# x=$(cat <<EOF +# foo +# EOF) +# is a valid complete command that sets x to foo, because +# cat <<EOF +# foo +# EOF +# is a valid script even without the final newline. +# However, if the here-document is not within a new-style command substitution +# or there are other constructs nested inside the command substitution that +# need terminators, the delimiter at the start of a line followed by a close +# parenthesis is clearly a literal part of the here-document. + +# This file contains tests that also work with simplistic $(...) parsers. + +failures=0 + +check() { + if ! eval "[ $* ]"; then + echo "Failed: $*" + : $((failures += 1)) + fi +} + +check '`${SH} -c "cat <<EOF +EOF) +EOF +"` = "EOF)"' + +check '`${SH} -c "(cat <<EOF +EOF) +EOF +)"` = "EOF)"' + +check '"`cat <<EOF +EOF x +EOF +`" = "EOF x"' + +check '"`cat <<EOF +EOF ) +EOF +`" = "EOF )"' + +check '"`cat <<EOF +EOF) +EOF +`" = "EOF)"' + +check '"$(cat <<EOF +EOF x +EOF +)" = "EOF x"' + +exit $((failures != 0)) |