diff options
Diffstat (limited to 'shell/ash_test/ash-misc/wait7.tests')
-rwxr-xr-x | shell/ash_test/ash-misc/wait7.tests | 7 |
1 files changed, 7 insertions, 0 deletions
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:$? |