diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-11 20:00:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-11 20:00:43 +0200 |
commit | f693b606b732437bb1265c2ec883d93127f3f38e (patch) | |
tree | 921ed6a5ada75f8d608f139eecd211f0f5869eb9 /shell/ash_test | |
parent | 44257ad5d0790a846423c9ef69a50049366b4578 (diff) | |
download | busybox-w32-f693b606b732437bb1265c2ec883d93127f3f38e.tar.gz busybox-w32-f693b606b732437bb1265c2ec883d93127f3f38e.tar.bz2 busybox-w32-f693b606b732437bb1265c2ec883d93127f3f38e.zip |
hush: fix recent breakage from parse_stream() changes
function old new delta
parse_stream 3808 3821 +13
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/ash-parsing/bkslash_newline3.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-parsing/bkslash_newline3.tests | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ash_test/ash-parsing/bkslash_newline3.right b/shell/ash_test/ash-parsing/bkslash_newline3.right new file mode 100644 index 000000000..e635074e5 --- /dev/null +++ b/shell/ash_test/ash-parsing/bkslash_newline3.right | |||
@@ -0,0 +1 @@ | |||
a:[a] | |||
diff --git a/shell/ash_test/ash-parsing/bkslash_newline3.tests b/shell/ash_test/ash-parsing/bkslash_newline3.tests new file mode 100755 index 000000000..2accd4395 --- /dev/null +++ b/shell/ash_test/ash-parsing/bkslash_newline3.tests | |||
@@ -0,0 +1,4 @@ | |||
1 | for s in \ | ||
2 | a; do | ||
3 | echo "a:[$s]" | ||
4 | done | ||