diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-02 11:33:53 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-02 11:33:53 +0100 |
commit | 8e20d4e9264a30dcc6d652943211668b1a6fe85b (patch) | |
tree | 7a7dcd4d55e2eb83374aed059a873486451c82e9 /shell/ash_test/ash-misc/func_prio_over_builtins.tests | |
parent | c8b51e5f274ff044ba2f9f350ead478d6c2063aa (diff) | |
parent | ec05df13b0f3bc69074909f078f981f417d95c89 (diff) | |
download | busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.gz busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.tar.bz2 busybox-w32-8e20d4e9264a30dcc6d652943211668b1a6fe85b.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'shell/ash_test/ash-misc/func_prio_over_builtins.tests')
-rwxr-xr-x | shell/ash_test/ash-misc/func_prio_over_builtins.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/func_prio_over_builtins.tests b/shell/ash_test/ash-misc/func_prio_over_builtins.tests new file mode 100755 index 000000000..4f71bfda0 --- /dev/null +++ b/shell/ash_test/ash-misc/func_prio_over_builtins.tests | |||
@@ -0,0 +1,5 @@ | |||
1 | true() { echo YES >&2; } | ||
2 | true | ||
3 | true | true | ||
4 | (true) | ||
5 | echo Ok:`true 2>&1` | ||