aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-heredoc/heredoc2.tests
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2015-10-29 11:29:59 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2015-10-29 19:12:03 +0100
commit9121510dc659baf6664456796c195460468c850b (patch)
tree9d810900b01bcb84ffedede4aa29a18963d2f209 /shell/ash_test/ash-heredoc/heredoc2.tests
parent4c8576fea18552d93d43c367638bacc54c26f2b7 (diff)
downloadbusybox-9121510dc659baf6664456796c195460468c850b.tar.gz
ash: add test for issue with here document
This used to work but doesn't now: foo () { cat <<EOF && { echo "$1" ; } $1 EOF } foo "bar" Reported-by: Natanael Copa <ncopa@alpinelinux.org> Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-heredoc/heredoc2.tests')
-rwxr-xr-xshell/ash_test/ash-heredoc/heredoc2.tests7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/ash_test/ash-heredoc/heredoc2.tests b/shell/ash_test/ash-heredoc/heredoc2.tests
new file mode 100755
index 000000000..6d9ccb6cc
--- /dev/null
+++ b/shell/ash_test/ash-heredoc/heredoc2.tests
@@ -0,0 +1,7 @@
+foo () {
+cat <<EOF && { echo "$1" ; }
+$1
+EOF
+}
+
+foo "bar"