summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/trap6.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/trap6.0')
-rw-r--r--shell_cmds/sh/tests/builtins/trap6.09
1 files changed, 9 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/trap6.0 b/shell_cmds/sh/tests/builtins/trap6.0
new file mode 100644
index 0000000..1e79ae7
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/trap6.0
@@ -0,0 +1,9 @@
+# $FreeBSD: head/bin/sh/tests/builtins/trap6.0 217472 2011-01-16 13:56:41Z jilles $
+
+v=$(
+ ${SH} -c 'trap "echo ok; exit" USR1; kill -USR1 $$' &
+ # Suppress possible message about exit on signal
+ wait $! >/dev/null 2>&1
+)
+r=$(kill -l $?)
+[ "$v" = "ok" ] && { [ "$r" = "USR1" ] || [ "$r" = "usr1" ]; }