diff options
author | Denys Vlasenko | 2016-11-08 00:59:29 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-08 00:59:29 +0100 |
commit | 02affb4afd4a71b0c1ca6286f9b0f6bf3b10e0a1 (patch) | |
tree | 8588590d1bc78e3d8117816eb6dfeed882166814 /shell/ash_test/ash-misc/wait5.tests | |
parent | 26ad94bedcc6a4aa3feb07ea032709bcd517ee46 (diff) | |
download | busybox-02affb4afd4a71b0c1ca6286f9b0f6bf3b10e0a1.zip busybox-02affb4afd4a71b0c1ca6286f9b0f6bf3b10e0a1.tar.gz |
hush: rework "wait %jobspec" to work in non-interactive shells too
Also add tests. wait5.tests so far fails (but works for ash and dash).
function old new delta
builtin_wait 305 283 -22
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-misc/wait5.tests')
-rwxr-xr-x | shell/ash_test/ash-misc/wait5.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/wait5.tests b/shell/ash_test/ash-misc/wait5.tests new file mode 100755 index 0000000..1b4762d --- /dev/null +++ b/shell/ash_test/ash-misc/wait5.tests @@ -0,0 +1,5 @@ +sleep 0 | (sleep 0;exit 3) & +sleep 1 +echo Zero:$? +wait %1 +echo Three:$? |