1 # Copyright (C) 1995 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 2 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, write to the Free Software
15 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 gdb_reinitialize_dir $srcdir/$subdir
25 set binfile $objdir/$subdir/sigall
27 if ![file exists $binfile] then {
28 perror "$binfile does not exist."
32 # Make the first signal SIGABRT because it is always supported.
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
48 if $this_sig_supported then {
51 -re "Continuing.*Program received signal SIG$thissig.*$prompt $" {
52 pass "get signal $thissig"
55 fail "get signal $thissig"
56 set need_another_continue 0
59 fail "get signal $thissig (eof or timeout)"
64 if $need_another_continue then {
66 "Breakpoint.*handle_$thissig" "send signal $thissig"
71 -re "Breakpoint.*gen_$nextsig.*kill.*$prompt $" {
72 pass "advance to $nextsig"
75 -re "Breakpoint.*gen_$nextsig.*handle.*$prompt $" {
76 pass "advance to $nextsig"
79 -re ".*$prompt $" { fail "advance to $nextsig" }
80 default { fail "advance to $nextsig (eof or timeout)" }
159 # The last signal (SIGTERM) gets handled slightly differently because
160 # we are not setting up for another test.
161 gdb_test "handle SIGTERM stop print" \
162 "SIGTERM\[ \t\]*Yes\[ \t\]*Yes\[ \t\]*Yes"
163 gdb_test "b handle_TERM" "Breakpoint \[0-9\]"
164 gdb_test "continue" \
165 "Continuing.*Program received signal SIGTERM" \
167 gdb_test "continue" "Breakpoint.*handle_TERM" "send signal TERM"
168 gdb_test "continue" "Program exited normally" "continue to sigall exit"