busybox/shell/hush_test/hush-vars/unset.tests
Denys Vlasenko 9fed83a7cc hush: fix false positive in unset.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-29 14:35:58 +02:00

46 lines
618 B
Plaintext
Executable File

(
# check invalid options are rejected
# bash: in posix mode, aborts if non-interactive
unset -
echo $?
unset -m a b c
echo $?
# check funky usage
unset
echo $?
# check normal usage
echo ___
f=f g=g
echo $? $f $g
unset f
echo $? $f $g
unset g
echo $? $f $g
echo ___
f=f g=g
echo $? $f $g
unset f g
echo $? $f $g
f=f g=g
echo $? $f $g
unset -v f g
echo $? $f $g
# check read only vars
echo ___
f=f g=g
VAR_RO=1
readonly VAR_RO
unset VAR_RO
echo $? $f $g
unset f VAR_RO g
echo $? $f $g
) 2>&1 \
| sed -e 's/ unrecognized option: / invalid option -- /' \
-e 's/ illegal option -- / invalid option -- /' \