aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-24 01:43:21 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-24 01:43:21 +0200
commit2f7894b1bb60ab12b518fac5ea5928f3ec01de28 (patch)
tree98bce8853fdd7e92fb86550bce21c3019d727c1a /shell/hush_test
parentecb179b6d72c58acbdbc707538d7562bc1c0a880 (diff)
downloadbusybox-2f7894b1bb60ab12b518fac5ea5928f3ec01de28.tar.gz
ash,hush: fix trap reporting: s/SIGEXIT/EXIT/
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r--shell/hush_test/hush-trap/usage.right12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/hush_test/hush-trap/usage.right b/shell/hush_test/hush-trap/usage.right
index c0dbd6c3c..5b90222f8 100644
--- a/shell/hush_test/hush-trap/usage.right
+++ b/shell/hush_test/hush-trap/usage.right
@@ -2,13 +2,13 @@ ___
___
___
trap -- 'a' EXIT
-trap -- 'a' INT
-trap -- 'a' USR1
-trap -- 'a' USR2
+trap -- 'a' SIGINT
+trap -- 'a' SIGUSR1
+trap -- 'a' SIGUSR2
___
___
-trap -- 'a' USR1
-trap -- 'a' USR2
+trap -- 'a' SIGUSR1
+trap -- 'a' SIGUSR2
___
___
-trap -- 'a' USR2
+trap -- 'a' SIGUSR2