diff options
author | Denys Vlasenko | 2018-07-23 15:43:57 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-07-23 15:43:57 +0200 |
commit | d73cdbf84c9c7d509baf69eb3256dcaf733f4d93 (patch) | |
tree | 676c221aa69cf5922890993baccc9c9040d7f4d8 /shell/ash_test | |
parent | ca2f831ead327d98ab3374acb3b07ad7632ea02d (diff) | |
download | busybox-d73cdbf84c9c7d509baf69eb3256dcaf733f4d93.zip busybox-d73cdbf84c9c7d509baf69eb3256dcaf733f4d93.tar.gz |
hush: fix handling of heredocs starting with empty lines
function old new delta
parse_stream 2748 2759 +11
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/ash-heredoc/heredoc_empty3.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-heredoc/heredoc_empty3.tests | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ash_test/ash-heredoc/heredoc_empty3.right b/shell/ash_test/ash-heredoc/heredoc_empty3.right new file mode 100644 index 0000000..0b54a9c --- /dev/null +++ b/shell/ash_test/ash-heredoc/heredoc_empty3.right @@ -0,0 +1,2 @@ + +Ok diff --git a/shell/ash_test/ash-heredoc/heredoc_empty3.tests b/shell/ash_test/ash-heredoc/heredoc_empty3.tests new file mode 100755 index 0000000..828c2dd --- /dev/null +++ b/shell/ash_test/ash-heredoc/heredoc_empty3.tests @@ -0,0 +1,4 @@ +cat <<EOF + +Ok +EOF |