diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-08 21:51:33 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-08 21:51:33 +0000 |
commit | 5c090a96f98f5a70af792945aa41ea53f82f39e2 (patch) | |
tree | 1a95c51f459436ca1e66157a708dbb34506e732c /shell/hush_test/hush-psubst | |
parent | ffe6f8085170ed6a9780906374ca781e9c4291cb (diff) | |
download | busybox-w32-5c090a96f98f5a70af792945aa41ea53f82f39e2.tar.gz busybox-w32-5c090a96f98f5a70af792945aa41ea53f82f39e2.tar.bz2 busybox-w32-5c090a96f98f5a70af792945aa41ea53f82f39e2.zip |
hush: more rodust detection of unterminated strings etc;
fix a case where we forget to copy `cmd` text;
optimize nommu heredoc helper by not passing environment to it;
add several tests
function old new delta
add_till_closing_paren 256 308 +52
parse_stream 2337 2378 +41
add_till_backquote 82 111 +29
re_execute_shell 269 284 +15
handle_dollar 802 812 +10
parse_stream_dquoted 316 320 +4
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 6/0 up/down: 151/0) Total: 151 bytes
Diffstat (limited to 'shell/hush_test/hush-psubst')
-rw-r--r-- | shell/hush_test/hush-psubst/tick_huge.right | 3 | ||||
-rwxr-xr-x | shell/hush_test/hush-psubst/tick_huge.tests | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/shell/hush_test/hush-psubst/tick_huge.right b/shell/hush_test/hush-psubst/tick_huge.right new file mode 100644 index 000000000..11740f674 --- /dev/null +++ b/shell/hush_test/hush-psubst/tick_huge.right | |||
@@ -0,0 +1,3 @@ | |||
1 | 546ed3f5c81c780d3ab86ada14824237 - | ||
2 | 546ed3f5c81c780d3ab86ada14824237 - | ||
3 | End | ||
diff --git a/shell/hush_test/hush-psubst/tick_huge.tests b/shell/hush_test/hush-psubst/tick_huge.tests new file mode 100755 index 000000000..acce92fb2 --- /dev/null +++ b/shell/hush_test/hush-psubst/tick_huge.tests | |||
@@ -0,0 +1,7 @@ | |||
1 | # This creates 120k file | ||
2 | yes "123456789 123456789 123456789 123456789" | head -3000 >>"$0.tmp" | ||
3 | |||
4 | echo "`cat $0.tmp`" | md5sum | ||
5 | rm "$0.tmp" | ||
6 | yes "123456789 123456789 123456789 123456789" | head -3000 | md5sum | ||
7 | echo End | ||