init version.
[bush.git] / tests / 6.cmd / trap / trap.tests
blob4f808be3e44aa5b675e7af20af5e5f33d9f5d714
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # test the trap code
16 trap 'echo exiting' 0
17 trap 'echo aborting' 1 2 3 6 15
19 # make sure a user-specified subshell runs the exit trap, but does not
20 # inherit the exit trap from a parent shell
21 ( trap 'echo subshell exit' 0; exit 0 )
22 ( exit 0 )
24 trap
26 func()
28         trap 'echo ${FUNCNAME:-$0}[$LINENO] funcdebug' DEBUG
29         echo funcdebug line
32 trap 'echo [$LINENO] debug' DEBUG
33 echo debug line
35 trap
37 func
39 trap
41 trap 'echo ${FUNCNAME:-$0}[$LINENO] debug' DEBUG
42 func2()
44         echo func2debug line
46 declare -ft func2
47 func2
49 unset -f func2
51 trap '' DEBUG
53 trap
55 trap - debug
57 trap
59 trap - HUP
60 trap hup
61 trap '' INT
62 trap '' int
64 trap
66 # exit 0 in exit trap should set exit status
68 set -e
69 trap 'exit 0' EXIT
70 false   
71 echo bad
73 echo $?
75 # hmmm...should this set the handling to SIG_IGN for children, too?
76 trap '' USR2
77 ./trap1.sub
78 trap - USR2
80 # test ERR trap
81 ./trap2.sub
83 ${THIS_SH} ./trap3.sub
85 ${THIS_SH} ./trap4.sub
87 # This doesn't work right on all Unix versions
88 #${THIS_SH} ./trap5.sub
90 # Return trap issues
91 ${THIS_SH} ./trap6.sub
94 # show that setting a trap on SIGCHLD is not disastrous.
96 set -o monitor
98 trap 'echo caught a child death' SIGCHLD
100 sleep 7 & sleep 6 & sleep 5 &
102 # this will only catch the first, since there's a trap on SIGCHLD
103 wait
105 trap -p SIGCHLD
107 # Now reset some of the signals the shell handles specially back to
108 # their default values (with or without the SIG prefix)
109 trap - SIGINT QUIT TERM
111 trap
113 trap - SIGCHLD
114 wait