diff options
Diffstat (limited to 'shell/hush_test')
-rw-r--r-- | shell/hush_test/hush-misc/wait6.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/wait6.tests | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/wait6.right b/shell/hush_test/hush-misc/wait6.right new file mode 100644 index 000000000..12decc137 --- /dev/null +++ b/shell/hush_test/hush-misc/wait6.right | |||
@@ -0,0 +1,2 @@ | |||
1 | 0 | ||
2 | 3 | ||
diff --git a/shell/hush_test/hush-misc/wait6.tests b/shell/hush_test/hush-misc/wait6.tests new file mode 100755 index 000000000..c23713199 --- /dev/null +++ b/shell/hush_test/hush-misc/wait6.tests | |||
@@ -0,0 +1,6 @@ | |||
1 | # In bash, "wait $!" extracts correct exitcode even if bg task has already exited | ||
2 | # It prints 0, then 3: | ||
3 | (sleep 0; exit 3) & sleep 1 | ||
4 | echo $? | ||
5 | wait $! | ||
6 | echo $? | ||