summaryrefslogtreecommitdiffstats
path: root/tools/regression/bin/sh/builtins/wait1.0
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/bin/sh/builtins/wait1.0')
-rw-r--r--tools/regression/bin/sh/builtins/wait1.023
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/regression/bin/sh/builtins/wait1.0 b/tools/regression/bin/sh/builtins/wait1.0
deleted file mode 100644
index 1ca8530..0000000
--- a/tools/regression/bin/sh/builtins/wait1.0
+++ /dev/null
@@ -1,23 +0,0 @@
-# $FreeBSD$
-
-failures=
-failure() {
- echo "Error at line $1" >&2
- failures=x$failures
-}
-
-exit 4 & p4=$!
-exit 8 & p8=$!
-wait $p4
-[ $? = 4 ] || failure $LINENO
-wait $p8
-[ $? = 8 ] || failure $LINENO
-
-exit 3 & p3=$!
-exit 7 & p7=$!
-wait $p7
-[ $? = 7 ] || failure $LINENO
-wait $p3
-[ $? = 3 ] || failure $LINENO
-
-test -z "$failures"
OpenPOWER on IntegriCloud