aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc_empty2.tests
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-08-02 11:33:53 +0100
committerRon Yorston <rmy@pobox.com>2017-08-02 11:33:53 +0100
commit8e20d4e9264a30dcc6d652943211668b1a6fe85b (patch)
tree7a7dcd4d55e2eb83374aed059a873486451c82e9 /shell/hush_test/hush-heredoc/heredoc_empty2.tests
parentc8b51e5f274ff044ba2f9f350ead478d6c2063aa (diff)
parentec05df13b0f3bc69074909f078f981f417d95c89 (diff)
downloadbusybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.gz
busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.bz2
busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'shell/hush_test/hush-heredoc/heredoc_empty2.tests')
-rwxr-xr-xshell/hush_test/hush-heredoc/heredoc_empty2.tests14
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 000000000..20fc35fe9
--- /dev/null
+++ b/shell/hush_test/hush-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:$?