summaryrefslogtreecommitdiff
path: root/tests/misc/chld-trap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/chld-trap.sh')
-rwxr-xr-xtests/misc/chld-trap.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/misc/chld-trap.sh b/tests/misc/chld-trap.sh
deleted file mode 100755
index 89b342dc..00000000
--- a/tests/misc/chld-trap.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#! /bin/sh
-#
-# show that setting a trap on SIGCHLD is not disastrous.
-#
-
-trap 'echo caught a child death' SIGCHLD
-
-sleep 5 &
-sleep 5 &
-sleep 5 &
-
-wait
-
-exit 0