diff options
Diffstat (limited to 'tests/misc/chld-trap.sh')
-rwxr-xr-x | tests/misc/chld-trap.sh | 14 |
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 |