diff options
author | Denys Vlasenko | 2017-07-29 20:43:26 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-29 20:43:26 +0200 |
commit | 0f018b30700989462de0a15b8285206d16170c1f (patch) | |
tree | f59fd946c2a00030fd2a65f45004da2b70eb136a /shell/hush_test/hush-heredoc/heredoc_empty2.tests | |
parent | a732898fdd9748b966da228ee8bbbc148c3c10c9 (diff) | |
download | busybox-0f018b30700989462de0a15b8285206d16170c1f.zip busybox-0f018b30700989462de0a15b8285206d16170c1f.tar.gz |
hush: fix handling of empty heredoc EOF marker
function old new delta
parse_stream 2609 2634 +25
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-heredoc/heredoc_empty2.tests')
-rwxr-xr-x | shell/hush_test/hush-heredoc/heredoc_empty2.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush_test/hush-heredoc/heredoc_empty2.tests b/shell/hush_test/hush-heredoc/heredoc_empty2.tests new file mode 100755 index 0000000..20fc35f --- /dev/null +++ b/shell/hush_test/hush-heredoc/heredoc_empty2.tests @@ -0,0 +1,14 @@ +unset a + +# Heredoc with empty delimiter +cat <<- "" + OK1 + +echo Ok:$? + +# Heredoc with empty delimiter +cat <<- "" + OK2 + + +echo Ok:$? |