mirror of https://github.com/mirror/busybox.git
hush_test: test for subshell function syntax
Signed-off-by: Mike Frysinger <vapier@gentoo.org>1_15_stable
parent
7b424fe738
commit
12bcc76e9b
|
@ -0,0 +1,3 @@
|
|||
1
|
||||
2
|
||||
3
|
|
@ -0,0 +1,9 @@
|
|||
f() { echo $1; }
|
||||
f 1
|
||||
|
||||
# hush fails on this syntax, but i've never seen anyone use it ...
|
||||
#f() ( echo $1; )
|
||||
f 2
|
||||
|
||||
#f() ( echo $1 )
|
||||
f 3
|
Loading…
Reference in New Issue