aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/wait6.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/wait6.tests')
-rwxr-xr-xshell/hush_test/hush-misc/wait6.tests6
1 files changed, 6 insertions, 0 deletions
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 @@
+# In bash, "wait $!" extracts correct exitcode even if bg task has already exited
+# It prints 0, then 3:
+(sleep 0; exit 3) & sleep 1
+echo $?
+wait $!
+echo $?