1 # Copyright 2009-2019 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-reverse.exp because of nosignals."
21 if ![supports_reverse] {
28 gdb_reinitialize_dir $srcdir/$subdir
32 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
36 proc test_one_sig {nextsig} {
41 set this_sig_supported $sig_supported
42 gdb_test "handle SIG$thissig stop print" \
43 "SIG$thissig\[ \t\]*Yes\[ \t\]*Yes\[ \t\]*Yes.*"
44 gdb_test "b handle_$thissig" "Breakpoint \[0-9\]+ .*"
45 gdb_test "b gen_$nextsig" "Breakpoint \[0-9\]+ .*"
47 set need_another_continue 1
49 if $this_sig_supported then {
50 if { $thissig == "IO" } {
51 setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
53 set testmsg "get signal $thissig"
54 gdb_test_multiple "continue" $testmsg {
55 -re "Program received signal SIG$thissig.*handle_$thissig.*$gdb_prompt $" {
56 fail "$testmsg (wrong location)"
58 -re "Program received signal SIG$thissig.*$gdb_prompt $" {
61 -re "Breakpoint.* handle_$thissig.*$gdb_prompt $" {
63 set need_another_continue 0
68 if $need_another_continue then {
69 if { $thissig == "URG" } {
70 setup_xfail "i*86-pc-linuxoldld-gnu" "i*86-pc-linuxaout-gnu"
72 # Either Lynx or GDB screws up on SIGPRIO
73 if { $thissig == "PRIO" } {
74 setup_xfail "*-*-*lynx*"
76 set testmsg "send signal $thissig"
77 gdb_test_multiple "continue" $testmsg {
78 -re "Breakpoint.*handle_$thissig.*$gdb_prompt $" {
81 -re "Breakpoint.*gen_$nextsig.*kill.*$gdb_prompt $" {
82 fail "missed breakpoint at handle_$thissig"
88 if { $missed_handler == "0" } then {
89 set testmsg "advance to $nextsig"
90 gdb_test_multiple "signal 0" $testmsg {
91 -re "Breakpoint.*gen_$nextsig.*kill.*$gdb_prompt $" {
95 -re "Breakpoint.*gen_$nextsig.*handle.*$gdb_prompt $" {
104 proc test_one_sig_reverse {prevsig} {
107 gdb_test "reverse-continue" "Breakpoint .* handle_$prevsig.*" \
108 "reverse to handler of $prevsig"
111 set testmsg "reverse to gen_$prevsig"
112 gdb_test_multiple "reverse-continue" $testmsg {
113 -re "Breakpoint.*handle_.*$gdb_prompt " {
114 pass "$testmsg (un-handled)"
116 -re "Program received signal SIG$prevsig.*$gdb_prompt " {
117 pass "reverse to signal event, $prevsig"
119 set nested_testmsg "reverse signal delivered"
120 gdb_test_multiple "frame" $nested_testmsg {
121 -re ".*handle_$prevsig.*$gdb_prompt " {
122 fail "$nested_testmsg (wrong location)"
124 -re ".*$gdb_prompt " {
130 send_gdb "reverse-continue\n"
133 -re "Breakpoint.*kill.*$gdb_prompt " {
134 if { $saw_signal } then {
135 pass "$testmsg (handled)"
137 xfail "$testmsg (handled)"
140 -re "No more reverse-execution history.*kill.*$gdb_prompt " {
141 if { $saw_signal } then {
142 pass "$testmsg (handled)"
144 xfail "$testmsg (handled)"
154 if [supports_process_record] {
155 # Activate process record/replay
156 gdb_test_no_output "record" "turn on process record"
159 # The list of signals that the program generates, in the order they
235 # Make the first signal SIGABRT because it is always supported.
239 # test signal handling
240 foreach sig [lrange $signals 1 end] {
244 # The last signal (SIGTERM) gets handled slightly differently because
245 # we are not setting up for another test.
246 gdb_test "handle SIGTERM stop print" \
247 "SIGTERM\[ \t\]*Yes\[ \t\]*Yes\[ \t\]*Yes.*"
248 gdb_test "b handle_TERM" "Breakpoint \[0-9\]+ .*"
249 gdb_test "continue" \
250 "Continuing.*Program received signal SIGTERM.*" \
252 gdb_test "continue" "Breakpoint.*handle_TERM.*" "send signal TERM"
254 with_timeout_factor 2 {
255 gdb_test "continue" "\[process \[0-9\]+ .*" "continue to signal exit" \
256 "The next instruction is syscall exit_group.* program...y. or n. " \
260 foreach sig [lreverse $signals] {
261 test_one_sig_reverse $sig
264 # Make the first signal SIGABRT because it is always supported.
268 foreach sig [lrange $signals 1 end] {