* gdb.base/call-signal-resume.exp, gdb.base/unwindonsignal.exp: Skip
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / call-signal-resume.exp
CommitLineData
4c38e0a4 1# Copyright 2008, 2010 Free Software Foundation, Inc.
b89667eb
DE
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
23if $tracelevel then {
24 strace $tracelevel
25}
26
27if [target_info exists gdb,noinferiorio] {
28 verbose "Skipping call-signal-resume.exp because of no fileio capabilities."
29 continue
30}
31
2390201f
DJ
32if [target_info exists gdb,nosignals] {
33 verbose "Skipping call-signal-resume.exp because of nosignals."
34 continue
35}
36
b89667eb
DE
37set prms_id 0
38set bug_id 0
39
40set testfile "call-signals"
41set srcfile ${testfile}.c
42set binfile ${objdir}/${subdir}/${testfile}
43
44if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
45 untested call-signal-resume.exp
46 return -1
47}
48
49# Some targets can't do function calls, so don't even bother with this
50# test.
51if [target_info exists gdb,cannot_call_functions] {
52 setup_xfail "*-*-*" 2416
53 fail "This target can not call functions"
54 continue
55}
56
57proc get_dummy_frame_number { } {
58 global gdb_prompt
59
60 send_gdb "bt\n"
61 gdb_expect {
62 -re "#(\[0-9\]*) *<function called from gdb>.*$gdb_prompt $"
63 {
64 return $expect_out(1,string)
65 }
66 -re "$gdb_prompt $"
67 {
68 return ""
69 }
70 timeout
71 {
72 return ""
73 }
74 }
75 return ""
76}
77
78# Start with a fresh gdb.
79
80gdb_exit
81gdb_start
82gdb_reinitialize_dir $srcdir/$subdir
83gdb_load ${binfile}
84
85if { ![runto_main] } {
86 fail "Can't run to main"
87 return 0
88}
89
90gdb_test "break stop_one" "Breakpoint \[0-9\]* at .*"
91gdb_test "continue" "Continuing.*Breakpoint \[0-9\]*, stop_one.*" \
92 "continue to breakpoint at stop_one"
93
94# Call function (causing the program to get a signal), and see if gdb handles
95# it properly.
96gdb_test_multiple "call gen_signal ()" \
97 "inferior function call signaled" {
98 -re "\[\r\n\]*no signal\[\r\n\]+$gdb_prompt $" {
99 unsupported "inferior function call signaled"
100 return 0
101 }
102 -re "\[\r\n\]*The program being debugged was signaled.*\[\r\n\]+$gdb_prompt $" {
103 pass "inferior function call signaled"
104 }
105}
106
107set frame_number [get_dummy_frame_number]
108if { "$frame_number" == "" } {
109 fail "dummy stack frame number"
110 setup_xfail "*-*-*"
111} else {
112 pass "dummy stack frame number"
113}
114
115# Pop the dummy frame.
116gdb_test "frame $frame_number" ""
117gdb_test "set confirm off" ""
118gdb_test "return" ""
119
120# Resume execution, the program should continue without any signal.
121
122gdb_test "break stop_two" "Breakpoint \[0-9\]* at .*"
123gdb_test "continue" "Breakpoint \[0-9\]*, stop_two.*" \
124 "continue to breakpoint at stop_two"
125
126# Continue again, we should get a signal.
127
128gdb_test "continue" "Program received signal .*" \
129 "continue to receipt of signal"
130
131# Hand call another function that prematurely stops,
132# then manually pop the dummy stack frame.
133
134gdb_test "break null_hand_call" "Breakpoint \[0-9\]* at .*"
135gdb_test "call null_hand_call ()" "Breakpoint \[0-9\]*, null_hand_call.*" \
136 "null_hand_call"
137
138set frame_number [get_dummy_frame_number]
139if { "$frame_number" == "" } {
140 fail "dummy stack frame number"
141 setup_xfail "*-*-*"
142 # Need something.
143 set frame_number 0
144} else {
145 pass "dummy stack frame number"
146}
147
148# Pop the dummy frame.
149gdb_test "frame $frame_number" ""
150gdb_test "set confirm off" ""
151gdb_test "return" ""
152
153# Continue again, this time we should get to the signal handler.
154
155gdb_test "break handle_signal" "Breakpoint \[0-9\]* at .*"
156gdb_test "continue" "Breakpoint \[0-9\]*, handle_signal.*" \
157 "continue to breakpoint at handle_signal"
158
159# Continue one last time, the program should exit normally.
160
161gdb_test "continue" "Program exited normally." \
162 "continue to program exit"
163
164return 0
This page took 0.158402 seconds and 4 git commands to generate.