]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - tools/regression/bin/sh/builtins/wait2.0
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / tools / regression / bin / sh / builtins / wait2.0
1 # $FreeBSD$
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"