diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-25 15:25:07 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-25 15:25:07 +0200 |
commit | be669fa1fdff6f751c8cdd3fc18a9fa7a7f46cd3 (patch) | |
tree | 5c65a8bb6788ee915dbc474e3407d40162a4c56b /shell/hush_test/hush-vars | |
parent | 645c697372b714f1293a37a185aa62965f600479 (diff) | |
download | busybox-w32-be669fa1fdff6f751c8cdd3fc18a9fa7a7f46cd3.tar.gz busybox-w32-be669fa1fdff6f751c8cdd3fc18a9fa7a7f46cd3.tar.bz2 busybox-w32-be669fa1fdff6f751c8cdd3fc18a9fa7a7f46cd3.zip |
ash: import param_expand_default.tests from hush
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-vars')
-rwxr-xr-x | shell/hush_test/hush-vars/param_expand_default.tests | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/hush_test/hush-vars/param_expand_default.tests b/shell/hush_test/hush-vars/param_expand_default.tests index 1ea051748..16e5f8efe 100755 --- a/shell/hush_test/hush-vars/param_expand_default.tests +++ b/shell/hush_test/hush-vars/param_expand_default.tests | |||
@@ -1,6 +1,8 @@ | |||
1 | # first try some invalid patterns (do in subshell due to parsing error) | 1 | # first try some invalid patterns (do in subshell due to parsing error) |
2 | "$THIS_SH" -c 'echo ${-}' | 2 | # (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages) |
3 | "$THIS_SH" -c 'echo ${:-}' | 3 | # valid in bash and ash (same as $-), not supported in hush (yet?): |
4 | "$THIS_SH" -c 'echo ${-}' SHELL | ||
5 | "$THIS_SH" -c 'echo ${:-}' SHELL | ||
4 | 6 | ||
5 | # now some funky ones | 7 | # now some funky ones |
6 | echo _${#-} _${#:-} | 8 | echo _${#-} _${#:-} |