diff options
author | Denys Vlasenko | 2017-07-25 15:18:57 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-25 15:18:57 +0200 |
commit | 645c697372b714f1293a37a185aa62965f600479 (patch) | |
tree | 5033362b96737f83526b776818bf4c9a4ef8a9ef /shell/hush_test/hush-vars | |
parent | 64925384c9cf5e0d986e183577da286bb3207ce7 (diff) | |
download | busybox-645c697372b714f1293a37a185aa62965f600479.zip busybox-645c697372b714f1293a37a185aa62965f600479.tar.gz |
hush: treat ${#?} as "length of $?"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-vars')
-rw-r--r-- | shell/hush_test/hush-vars/param_expand_indicate_error.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-vars/param_expand_indicate_error.tests | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush_test/hush-vars/param_expand_indicate_error.right b/shell/hush_test/hush-vars/param_expand_indicate_error.right index 06fcc51..acf2938 100644 --- a/shell/hush_test/hush-vars/param_expand_indicate_error.right +++ b/shell/hush_test/hush-vars/param_expand_indicate_error.right @@ -1,5 +1,5 @@ hush: syntax error: unterminated ${name} -0 +1 0 ==== _ diff --git a/shell/hush_test/hush-vars/param_expand_indicate_error.tests b/shell/hush_test/hush-vars/param_expand_indicate_error.tests index be14b1e..5f946e3 100755 --- a/shell/hush_test/hush-vars/param_expand_indicate_error.tests +++ b/shell/hush_test/hush-vars/param_expand_indicate_error.tests @@ -5,7 +5,7 @@ "$THIS_SH" -c 'echo ${:?}' # then some funky ones -# note: bash prints 1 - treats it as "length of $#"? We print 0 +# note: bash prints 1 - treats it as "length of $#" "$THIS_SH" -c 'echo ${#?}' # bash prints 0 "$THIS_SH" -c 'echo ${#:?}' |