summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-vars/unset.tests
blob: f59ce59231265bc969965c63616f2c3db9f98ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# check invalid options are rejected
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
unset HUSH_VERSION
echo $? $f $g
unset f HUSH_VERSION g
echo $? $f $g