diff options
author | Denys Vlasenko | 2018-04-11 20:00:43 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-04-11 20:00:43 +0200 |
commit | f693b606b732437bb1265c2ec883d93127f3f38e (patch) | |
tree | 921ed6a5ada75f8d608f139eecd211f0f5869eb9 /shell/hush_test/hush-parsing/bkslash_newline3.tests | |
parent | 44257ad5d0790a846423c9ef69a50049366b4578 (diff) | |
download | busybox-f693b606b732437bb1265c2ec883d93127f3f38e.zip busybox-f693b606b732437bb1265c2ec883d93127f3f38e.tar.gz |
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/hush_test/hush-parsing/bkslash_newline3.tests')
-rwxr-xr-x | shell/hush_test/hush-parsing/bkslash_newline3.tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush_test/hush-parsing/bkslash_newline3.tests b/shell/hush_test/hush-parsing/bkslash_newline3.tests new file mode 100755 index 0000000..2accd43 --- /dev/null +++ b/shell/hush_test/hush-parsing/bkslash_newline3.tests @@ -0,0 +1,4 @@ +for s in \ +a; do + echo "a:[$s]" +done |