mirror of
https://github.com/opnsense/src.git
synced 2026-03-31 15:05:17 -04:00
15 lines
207 B
Text
15 lines
207 B
Text
# $FreeBSD$
|
|
|
|
failures=
|
|
failure() {
|
|
echo "Error at line $1" >&2
|
|
failures=x$failures
|
|
}
|
|
|
|
for i in 1 2 3 4 5 6 7 8 9 10; do
|
|
exit $i &
|
|
done
|
|
wait || failure $LINENO
|
|
wait || failure $LINENO
|
|
|
|
test -z "$failures"
|