summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-trap/catch.tests
diff options
context:
space:
mode:
Diffstat (limited to 'release/src/router/busybox/shell/hush_test/hush-trap/catch.tests')
-rwxr-xr-xrelease/src/router/busybox/shell/hush_test/hush-trap/catch.tests20
1 files changed, 20 insertions, 0 deletions
diff --git a/release/src/router/busybox/shell/hush_test/hush-trap/catch.tests b/release/src/router/busybox/shell/hush_test/hush-trap/catch.tests
new file mode 100755
index 00000000..d2a21d17
--- /dev/null
+++ b/release/src/router/busybox/shell/hush_test/hush-trap/catch.tests
@@ -0,0 +1,20 @@
+# avoid ugly warnings about signals not being caught
+trap ":" USR1 USR2
+
+"$THIS_SH" -c '
+trap "echo caught" USR2
+echo "sending USR2"
+kill -USR2 $$
+
+trap "" USR2
+echo "sending USR2"
+kill -USR2 $$
+
+trap "-" USR2
+echo "sending USR2"
+kill -USR2 $$
+
+echo "not reached"
+'
+
+trap "-" USR1 USR2