aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-29 20:43:26 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-29 20:43:26 +0200
commit0f018b30700989462de0a15b8285206d16170c1f (patch)
treef59fd946c2a00030fd2a65f45004da2b70eb136a /shell/ash_test
parenta732898fdd9748b966da228ee8bbbc148c3c10c9 (diff)
downloadbusybox-w32-0f018b30700989462de0a15b8285206d16170c1f.tar.gz
busybox-w32-0f018b30700989462de0a15b8285206d16170c1f.tar.bz2
busybox-w32-0f018b30700989462de0a15b8285206d16170c1f.zip
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/ash_test')
-rw-r--r--shell/ash_test/ash-heredoc/heredoc_empty2.right4
-rwxr-xr-xshell/ash_test/ash-heredoc/heredoc_empty2.tests14
2 files changed, 18 insertions, 0 deletions
diff --git a/shell/ash_test/ash-heredoc/heredoc_empty2.right b/shell/ash_test/ash-heredoc/heredoc_empty2.right
new file mode 100644
index 000000000..e32c6ea58
--- /dev/null
+++ b/shell/ash_test/ash-heredoc/heredoc_empty2.right
@@ -0,0 +1,4 @@
1OK1
2Ok:0
3OK2
4Ok:0
diff --git a/shell/ash_test/ash-heredoc/heredoc_empty2.tests b/shell/ash_test/ash-heredoc/heredoc_empty2.tests
new file mode 100755
index 000000000..20fc35fe9
--- /dev/null
+++ b/shell/ash_test/ash-heredoc/heredoc_empty2.tests
@@ -0,0 +1,14 @@
1unset a
2
3# Heredoc with empty delimiter
4cat <<- ""
5 OK1
6
7echo Ok:$?
8
9# Heredoc with empty delimiter
10cat <<- ""
11 OK2
12
13
14echo Ok:$?