mirror of https://github.com/mirror/busybox.git
hush: add func6.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_26_stable
parent
35ec818fa2
commit
a2633aa819
|
@ -0,0 +1,2 @@
|
|||
Two:2
|
||||
Two:2
|
|
@ -0,0 +1,11 @@
|
|||
f1() {
|
||||
while return 2; do :; done
|
||||
}
|
||||
f1
|
||||
echo Two:$?
|
||||
|
||||
f2() {
|
||||
while :; do return 2; done
|
||||
}
|
||||
f2
|
||||
echo Two:$?
|
Loading…
Reference in New Issue