]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/call-signal-resume.exp
Automatic Copyright Year update after running gdb/copyright.py
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / call-signal-resume.exp
1 # Copyright 2008-2022 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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/>.
15
16 # Test inferior resumption after discarding a hand-called function.
17 # There are two things to test.
18 # 1) Inferior stops normally. Upon resumption it should continue normally,
19 # regardless of whatever signal the hand-called function got.
20 # 2) Inferior is stopped at a signal. Upon resumption it should continue
21 # with that signal, regardless of whatever the hand-called function did.
22
23 if [target_info exists gdb,nosignals] {
24 verbose "Skipping call-signal-resume.exp because of nosignals."
25 continue
26 }
27
28
29 standard_testfile call-signals.c
30
31 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
32 untested "failed to compile"
33 return -1
34 }
35
36 # Some targets can't do function calls, so don't even bother with this
37 # test.
38 if [target_info exists gdb,cannot_call_functions] {
39 unsupported "this target can not call functions"
40 continue
41 }
42
43 proc get_dummy_frame_number { } {
44 global gdb_prompt
45
46 gdb_test_multiple "bt" "backtrace" {
47 -re "#(\[0-9\]*) *<function called from gdb>.*$gdb_prompt $" {
48 return $expect_out(1,string)
49 }
50 }
51 return ""
52 }
53
54 # Start with a fresh gdb.
55
56 clean_restart ${binfile}
57
58 if { ![runto_main] } {
59 return 0
60 }
61
62 gdb_test "break stop_one" "Breakpoint \[0-9\]* at .*"
63 gdb_test "continue" "Continuing.*Breakpoint \[0-9\]*, stop_one.*" \
64 "continue to breakpoint at stop_one"
65
66 # Call function (causing the program to get a signal), and see if gdb handles
67 # it properly.
68 if {[gdb_test "call gen_signal ()" \
69 "\[\r\n\]*The program being debugged was signaled.*" \
70 "inferior function call signaled"] != 0} {
71 return 0
72 }
73
74 set frame_number [get_dummy_frame_number]
75 if { "$frame_number" == "" } {
76 fail "dummy stack frame number"
77 setup_xfail "*-*-*"
78 } else {
79 pass "dummy stack frame number"
80 }
81
82 # Pop the dummy frame.
83 gdb_test "frame $frame_number" ".*"
84 gdb_test_no_output "set confirm off"
85 gdb_test "return" ""
86
87 # Verify there are no remains of the dummy frame.
88 gdb_test_no_output "maintenance print dummy-frames"
89 set test "maintenance info breakpoints"
90 gdb_test_multiple $test $test {
91 -re " call dummy .*\r\n$gdb_prompt $" {
92 fail $test
93 }
94 -re "\r\n$gdb_prompt $" {
95 pass $test
96 }
97 }
98
99 # Resume execution, the program should continue without any signal.
100
101 gdb_test "break stop_two" "Breakpoint \[0-9\]* at .*"
102 gdb_test "continue" "Breakpoint \[0-9\]*, stop_two.*" \
103 "continue to breakpoint at stop_two"
104
105 # Continue again, we should get a signal.
106
107 gdb_test "continue" "Program received signal .*" \
108 "continue to receipt of signal"
109
110 # Hand call another function that prematurely stops,
111 # then manually pop the dummy stack frame.
112
113 gdb_test "break null_hand_call" "Breakpoint \[0-9\]* at .*"
114 gdb_test "call null_hand_call ()" "Breakpoint \[0-9\]*, null_hand_call.*" \
115 "null_hand_call"
116
117 set frame_number [get_dummy_frame_number]
118 if { "$frame_number" == "" } {
119 fail "dummy stack frame number"
120 setup_xfail "*-*-*"
121 # Need something.
122 set frame_number 0
123 } else {
124 pass "dummy stack frame number"
125 }
126
127 # Pop the dummy frame.
128 gdb_test "frame $frame_number" ".*"
129 gdb_test_no_output "set confirm off"
130 gdb_test "return" ""
131
132 # Continue again, this time we should get to the signal handler.
133
134 gdb_test "break handle_signal" "Breakpoint \[0-9\]* at .*"
135 gdb_test "continue" "Breakpoint \[0-9\]*, handle_signal.*" \
136 "continue to breakpoint at handle_signal"
137
138 # Continue one last time, the program should exit normally.
139
140 gdb_test "continue" "$inferior_exited_re normally." \
141 "continue to program exit"
142
143 return 0