aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/wait2.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/wait2.0')
-rw-r--r--shell_cmds/sh/tests/builtins/wait2.015
1 files changed, 15 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/wait2.0 b/shell_cmds/sh/tests/builtins/wait2.0
new file mode 100644
index 0000000..71adfde
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/wait2.0
@@ -0,0 +1,15 @@
+# $FreeBSD: head/bin/sh/tests/builtins/wait2.0 208476 2010-05-23 22:10:20Z jilles $
+
+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"