diff options
author | Denys Vlasenko | 2010-09-10 11:06:01 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-09-10 11:06:01 +0200 |
commit | 4f870496e7d934fcbe092478f1da8ec7a3ea4466 (patch) | |
tree | 931344dd0d6d1d8cfaf358b1cd6f6e8982101b74 /shell/hush_test/hush-vars/var_bash6.tests | |
parent | d98e5c65c3c69373dab56a7f9af8780c1a8123b2 (diff) | |
download | busybox-4f870496e7d934fcbe092478f1da8ec7a3ea4466.zip busybox-4f870496e7d934fcbe092478f1da8ec7a3ea4466.tar.gz |
hush: do fewer strdups in % and hash expansions
function old new delta
builtin_umask 133 132 -1
expand_one_var 1552 1543 -9
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'shell/hush_test/hush-vars/var_bash6.tests')
-rwxr-xr-x | shell/hush_test/hush-vars/var_bash6.tests | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var_bash6.tests b/shell/hush_test/hush-vars/var_bash6.tests new file mode 100755 index 0000000..cf2e4f0 --- /dev/null +++ b/shell/hush_test/hush-vars/var_bash6.tests @@ -0,0 +1,9 @@ +# This testcase checks globbing correctness in ${v/a/b} + +>a1z; >a2z; + echo 'Expected' 'Actual' +v='a bz'; echo 'a*z :' "${v/a*z/a*z}" +v='a bz'; echo '\z :' "${v/a*z/\z}" +v='a bz'; echo 'a1z a2z:' ${v/a*z/a*z} +v='a bz'; echo 'z :' ${v/a*z/\z} +rm a1z a2z |