[git commit branch/1_32_stable] shell: add testsuite for "wait $pid" waiting for other tasks

Denys Vlasenko vda.linux at googlemail.com
Fri Jan 1 13:30:58 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=58cbf385e0b4a3fdcd870bfbc57d6fd5d4dff875
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/1_32_stable

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/ash_test/ash-misc/wait7.right   | 2 ++
 shell/ash_test/ash-misc/wait7.tests   | 7 +++++++
 shell/hush_test/hush-misc/wait7.right | 2 ++
 shell/hush_test/hush-misc/wait7.tests | 7 +++++++
 4 files changed, 18 insertions(+)

diff --git a/shell/ash_test/ash-misc/wait7.right b/shell/ash_test/ash-misc/wait7.right
new file mode 100644
index 000000000..4b6445841
--- /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 000000000..a54a778e5
--- /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 000000000..4b6445841
--- /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 000000000..a54a778e5
--- /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:$?


More information about the busybox-cvs mailing list