diff options
-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 000000000..4b6445841 --- /dev/null +++ b/shell/ash_test/ash-misc/wait7.right | |||
@@ -0,0 +1,2 @@ | |||
1 | Background1 | ||
2 | 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 @@ | |||
1 | sleep 1 && echo "Background1" & | ||
2 | pid=$! | ||
3 | sleep 3 && echo "Background2: BUG!" & | ||
4 | # Shouldn't wait for 2nd bkgd: | ||
5 | wait $pid | ||
6 | kill $! | ||
7 | 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 @@ | |||
1 | Background1 | ||
2 | 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 @@ | |||
1 | sleep 1 && echo "Background1" & | ||
2 | pid=$! | ||
3 | sleep 3 && echo "Background2: BUG!" & | ||
4 | # Shouldn't wait for 2nd bkgd: | ||
5 | wait $pid | ||
6 | kill $! | ||
7 | echo Ok:$? | ||