ash: import param_expand_default.tests from hush

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2017-07-25 15:25:07 +02:00
parent 645c697372
commit be669fa1fd
3 changed files with 34 additions and 2 deletions

View File

@ -1,6 +1,8 @@
# first try some invalid patterns (do in subshell due to parsing error)
"$THIS_SH" -c 'echo ${-}'
"$THIS_SH" -c 'echo ${:-}'
# (set argv0 to "SHELL" to avoid "/path/to/shell: blah" in error messages)
# valid in bash and ash (same as $-), not supported in hush (yet?):
"$THIS_SH" -c 'echo ${-}' SHELL
"$THIS_SH" -c 'echo ${:-}' SHELL
# now some funky ones
echo _${#-} _${#:-}