busybox/shell/hush_test/hush-heredoc/heredoc_empty2.tests
Denys Vlasenko 0f018b3070 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>
2017-07-29 20:43:26 +02:00

15 lines
130 B
Plaintext
Executable File

unset a
# Heredoc with empty delimiter
cat <<- ""
OK1
echo Ok:$?
# Heredoc with empty delimiter
cat <<- ""
OK2
echo Ok:$?