diff options
author | Denys Vlasenko | 2020-09-29 22:36:36 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-01-01 14:30:58 +0100 |
commit | 58cbf385e0b4a3fdcd870bfbc57d6fd5d4dff875 (patch) | |
tree | 03515c0048bccce130473364475a7a83b5bfecab | |
parent | e7629ffbf5c697a0fa805e2439c278e019d84835 (diff) | |
download | busybox-58cbf385e0b4a3fdcd870bfbc57d6fd5d4dff875.zip busybox-58cbf385e0b4a3fdcd870bfbc57d6fd5d4dff875.tar.gz |
shell: add testsuite for "wait $pid" waiting for other tasks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash_test/ash-misc/wait7.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/wait7.tests | 7 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/wait7.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/wait7.tests | 7 |
4 files changed, 18 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/wait7.right b/shell/ash_test/ash-misc/wait7.right new file mode 100644 index 0000000..4b64458 --- /dev/null +++ b/shell/ash_test/ash-misc/wait7.right @@ -0,0 +1,2 @@ +Background1 +Ok:0 diff --git a/shell/ash_test/ash-misc/wait7.tests b/shell/ash_test/ash-misc/wait7.tests new file mode 100755 index 0000000..a54a778 --- /dev/null +++ b/shell/ash_test/ash-misc/wait7.tests @@ -0,0 +1,7 @@ +sleep 1 && echo "Background1" & +pid=$! +sleep 3 && echo "Background2: BUG!" & +# Shouldn't wait for 2nd bkgd: +wait $pid +kill $! +echo Ok:$? diff --git a/shell/hush_test/hush-misc/wait7.right b/shell/hush_test/hush-misc/wait7.right new file mode 100644 index 0000000..4b64458 --- /dev/null +++ b/shell/hush_test/hush-misc/wait7.right @@ -0,0 +1,2 @@ +Background1 +Ok:0 diff --git a/shell/hush_test/hush-misc/wait7.tests b/shell/hush_test/hush-misc/wait7.tests new file mode 100755 index 0000000..a54a778 --- /dev/null +++ b/shell/hush_test/hush-misc/wait7.tests @@ -0,0 +1,7 @@ +sleep 1 && echo "Background1" & +pid=$! +sleep 3 && echo "Background2: BUG!" & +# Shouldn't wait for 2nd bkgd: +wait $pid +kill $! +echo Ok:$? |