freebsd-dev/tools/regression/bin/sh/parser/heredoc1.0
Jilles Tjoelker 0019284ae8 sh: Add various testcases for here documents.
They are mainly about expansions in here documents but because all the
testcases are in $() command substitution, we also test that $() command
substitution is recursively parsed (or very close to it).
2010-03-07 15:08:42 +00:00

86 lines
744 B
Plaintext

# $FreeBSD$
failures=0
check() {
if ! eval "[ $* ]"; then
echo "Failed: $*"
: $((failures += 1))
fi
}
check '"$(cat <<EOF
hi
EOF
)" = hi'
check '"$(cat <<EOF
${$+hi}
EOF
)" = hi'
unset yy
check '"$(cat <<EOF
${yy-hi}
EOF
)" = hi'
check '"$(cat <<EOF
${$+hi
there}
EOF
)" = "hi
there"'
check '"$(cat <<EOF
$((1+1))
EOF
)" = 2'
check '"$(cat <<EOF
$(echo hi)
EOF
)" = hi'
check '"$(cat <<EOF
`echo hi`
EOF
)" = hi'
check '"$(cat <<\EOF
${$+hi}
EOF
)" = "\${\$+hi}"'
check '"$(cat <<\EOF
$(
EOF
)" = \$\('
check '"$(cat <<\EOF
`
EOF
)" = \`'
check '"$(cat <<EOF
"
EOF
)" = \"'
check '"$(cat <<\EOF
"
EOF
)" = \"'
check '"$(cat <<esac
'"'"'
esac
)" = "'"'"'"'
check '"$(cat <<\)
'"'"'
)
)" = "'"'"'"'
exit $((failures != 0))