]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/wait2.0
shell_cmds-203.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / wait2.0
1 # $FreeBSD: head/bin/sh/tests/builtins/wait2.0 208476 2010-05-23 22:10:20Z jilles $
2
3 failures=
4 failure() {
5 echo "Error at line $1" >&2
6 failures=x$failures
7 }
8
9 for i in 1 2 3 4 5 6 7 8 9 10; do
10 exit $i &
11 done
12 wait || failure $LINENO
13 wait || failure $LINENO
14
15 test -z "$failures"