ash: force inlining of a trivial function
[oweals/busybox.git] / shell / hush_test / hush-misc / wait6.tests
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 $?