commit | d4dd48f2948b006f4ccb7cc2b603fb3d00f90685 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Tue Sep 29 22:36:36 2020 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Tue Sep 29 22:36:36 2020 +0200 |
tree | 9300a216d4742720beb350b9a0b4bd1a52aa60ea | |
parent | 91e11eba6e3ee21f70905bca857b9b216fb764f6 [diff] [blame] |
shell: add testsuite for "wait $pid" waiting for other tasks Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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:$?