1 # Copyright 1995-1997, 1999, 2007-2012 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 if [target_info exists gdb,nosignals] {
17 verbose "Skipping sigall.exp because of nosignals."
28 gdb_reinitialize_dir $srcdir/$subdir
31 set srcfile ${testfile}.c
32 set binfile ${objdir}/${subdir}/${testfile}
33 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
38 # Make the first signal SIGABRT because it is always supported.
42 proc test_one_sig {nextsig} {
47 set this_sig_supported $sig_supported
48 gdb_test "handle SIG$thissig stop print" \
49 "SIG$thissig\[ \t\]*Yes\[ \t\]*Yes\[ \t\]*Yes.*"
50 gdb_test "b handle_$thissig" "Breakpoint \[0-9\]+ .*"
51 gdb_test "b gen_$nextsig" "Breakpoint \[0-9\]+ .*"
53 set need_another_continue 1
55 if $this_sig_supported then {
56 if { $thissig == "IO" } {
57 setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
60 "Continuing.*Program received signal SIG$thissig.*" \
63 if [ istarget "alpha-dec-osf3*" ] then {
64 # OSF/1-3.x is unable to continue with a job control stop signal.
65 # The inferior remains stopped without an event of interest
66 # and GDB waits forever for the inferior to stop on an event
67 # of interest. Work around the kernel bug.
68 if { $thissig == "TSTP" || $thissig == "TTIN" || $thissig == "TTOU" } {
69 setup_xfail "alpha-dec-osf3*"
70 fail "cannot continue from signal $thissig"
71 set need_another_continue 0
75 if $need_another_continue then {
76 if { $thissig == "URG" } {
77 setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
79 # Either Lynx or GDB screws up on SIGPRIO
80 if { $thissig == "PRIO" } {
81 setup_xfail "*-*-*lynx*"
83 gdb_test_multiple "continue" "send signal $thissig" {
84 -re "Breakpoint.*handle_$thissig.*$gdb_prompt $" {
85 pass "send signal $thissig"
87 -re "Breakpoint.*gen_$nextsig.*kill.*$gdb_prompt $" {
88 fail "missed breakpoint at handle_$thissig"
94 if { $missed_handler == "0" } then {
95 gdb_test_multiple "signal 0" "advance to $nextsig" {
96 -re "Breakpoint.*gen_$nextsig.*\r\n\[0-9\]+\[ \t\]+kill \\(.*\r\n$gdb_prompt $" {
97 pass "advance to $nextsig"
100 -re "Breakpoint.*gen_$nextsig.*\r\n\[0-9\]+\[ \t\]+handle_.*\r\n$gdb_prompt $" {
101 pass "advance to $nextsig"
183 # The last signal (SIGTERM) gets handled slightly differently because
184 # we are not setting up for another test.
185 gdb_test "handle SIGTERM stop print" \
186 "SIGTERM\[ \t\]*Yes\[ \t\]*Yes\[ \t\]*Yes.*"
187 gdb_test "b handle_TERM" "Breakpoint \[0-9\]+ .*"
188 gdb_test "continue" \
189 "Continuing.*Program received signal SIGTERM.*" \
191 gdb_test "continue" "Breakpoint.*handle_TERM.*" "send signal TERM"
192 gdb_continue_to_end "continue to sigall exit"