diff options
Diffstat (limited to 'shell/hush_test/hush-misc/func_args1.tests')
-rwxr-xr-x | shell/hush_test/hush-misc/func_args1.tests | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/func_args1.tests b/shell/hush_test/hush-misc/func_args1.tests new file mode 100755 index 000000000..157921fb1 --- /dev/null +++ b/shell/hush_test/hush-misc/func_args1.tests @@ -0,0 +1,10 @@ +# UNFIXED BUG + +f() { echo "'f $1 $2 $3' called"; } + +set -- a b c +echo "params: $1 $2 $3" +f 1 2 3 +echo "params: $1 $2 $3" +true | f 1 2 3 +echo "params: $1 $2 $3" |