]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/pending.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / pending.exp
CommitLineData
6aba47ca 1# Copyright 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
18fe2033
JJ
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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
18fe2033 17# This file was created by Jeff Johnston. (jjohnstn@redhat.com)
18fe2033
JJ
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
23#
24# test running programs
25#
26set prms_id 0
27set bug_id 0
28
29# are we on a target board?
30if ![isnative] then {
31 return 0
32}
33
34set testfile "pending"
35set libfile "pendshr"
3cbba3d1
PG
36set srcfile $testfile.c
37set libsrc $srcdir/$subdir/$libfile.c
38set binfile $objdir/$subdir/$testfile
39set lib_sl $objdir/$subdir/$libfile.sl
40
41set lib_opts debug
42set exec_opts [list debug shlib=$lib_sl]
18fe2033
JJ
43
44if [get_compiler_info ${binfile}] {
45 return -1
46}
47
3cbba3d1
PG
48if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
49 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable $exec_opts] != ""} {
50 untested "Could not compile either $libsrc or $srcdir/$subdir/$srcfile."
51 return -1
18fe2033
JJ
52}
53
3cbba3d1 54# Start with a fresh gdb.
18fe2033
JJ
55
56gdb_exit
57gdb_start
58gdb_reinitialize_dir $srcdir/$subdir
59gdb_load ${binfile}
60
61if [target_info exists gdb_stub] {
62 gdb_step_for_stub;
63}
64#
65# Test setting, querying, and modifying pending breakpoints
66#
67
68gdb_test_multiple "break pendfunc1" "set pending breakpoint" {
9f27c604 69 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
18fe2033
JJ
70 gdb_test "y" "Breakpoint.*pendfunc1.*pending." "set pending breakpoint"
71 }
72}
73
74gdb_test "info break" \
75 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
76\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendfunc1.*" \
77"single pending breakpoint info"
78
79#
80# Test breaking at existing function
81#
82
83set mainline [gdb_get_line_number "break main here"]
84
85gdb_test "break main" \
86 "Breakpoint.*at.* file .*$srcfile, line $mainline.*" \
87 "breakpoint function"
88
89gdb_test "info break" \
90 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
91\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendfunc1.*
92\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline" \
93"pending plus real breakpoint info"
94
95
96#
97# Test not setting a pending breakpoint
98#
99gdb_test_multiple "break pendfunc2" "Don't set pending breakpoint" {
9f27c604 100 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
18fe2033
JJ
101 gdb_test "n" "" "Don't set pending breakpoint"
102 }
103}
104
105#
106# Add condition to pending breakpoint
107#
108
d2dc51db 109gdb_test "condition 1 k == 1" ""
18fe2033
JJ
110
111gdb_test "info break" \
112 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
113\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendfunc1.*
114\[\t \]+stop only if k == 1.*
115\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline" \
116"pending plus condition"
117
118#
119# Disable pending breakpoint
120#
121
d2dc51db 122gdb_test "disable 1" ""
18fe2033
JJ
123
124gdb_test "info break" \
125 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
126\[0-9\]+\[\t \]+breakpoint keep n.*PENDING.*pendfunc1.*
127\[\t \]+stop only if k == 1.*
128\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline" \
129"pending disabled"
130
131#
132# Add commands to pending breakpoint
133#
134gdb_test "commands 1\nprint k\nend" "" \
135 "Set commands for pending breakpoint"
136
137gdb_test "info break" \
138 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
139\[0-9\]+\[\t \]+breakpoint keep n.*PENDING.*pendfunc1.*
140\[\t \]+stop only if k == 1.*
141\[\t \]+print k.*
142\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline" \
143"pending disabled plus commands"
144
145#
146# Try a pending break for a line in a source file with a condition
147#
148
149gdb_test_multiple "break pendshr.c:26 if x > 3" "Set pending breakpoint 2" {
9f27c604 150 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
18fe2033
JJ
151 gdb_test "y" "Breakpoint.*pendshr.c:26.*pending." \
152 "Set pending breakpoint 2"
153 }
154}
155
156gdb_test "info break" \
157 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
158\[0-9\]+\[\t \]+breakpoint keep n.*PENDING.*pendfunc1.*
159\[\t \]+stop only if k == 1.*
160\[\t \]+print k.*
161\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline.*
162\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:26 if x > 3.*" \
163"multiple pending breakpoints"
164
0a5e7efe
JI
165
166#
167# Try a pending break for a line in a source file with ignore count:
168#
169
170gdb_test_multiple "break pendshr.c:27" "Set pending breakpoint 3" {
171 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
172 gdb_test "y" "Breakpoint.*pendshr.c:27.*pending." \
173 "Set pending breakpoint 3"
174 }
175}
176
177gdb_test {ignore $bpnum 2} "Will ignore next 2 crossings of breakpoint .*" \
178 "set ignore count on pending breakpoint 3"
179
180gdb_test "info break" \
181 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
182\[0-9\]+\[\t \]+breakpoint keep n.*PENDING.*pendfunc1.*
183\[\t \]+stop only if k == 1.*
184\[\t \]+print k.*
185\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline.*
186\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:26 if x > 3.*
187\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:27.*ignore next 2 hits.*" \
188"multiple pending breakpoints 2"
189
18fe2033
JJ
190#
191# Run to main which should resolve a pending breakpoint
192#
193
194gdb_test "run" \
195"Breakpoint.*at.*
196Pending breakpoint \"pendshr.c:26 if x > 3\" resolved.*
197Breakpoint.*, main.*$mainline.*" \
198"running to main"
199
200#
201# Re-enable the first pending breakpoint which should resolve
202#
203
204gdb_test "enable 1" \
205"Breakpoint.*at.*
206Pending breakpoint \"pendfunc1.* resolved.*" \
207"re-enabling pending breakpoint that can resolve instantly"
208
209#
210# Continue to verify conditionals and commands for breakpoints are honored
211#
212
213gdb_test "continue" \
214".*Breakpoint.*pendfunc1.*at.*pendshr.c:26.*4;" \
215"continue to resolved breakpoint 2"
216
217gdb_test "continue" \
218".*Breakpoint.*pendfunc1.*at.*pendshr.c:26.*
219\[$\]1 = 1." \
220"continue to resolved breakpoint 1"
221
0a5e7efe
JI
222#
223# Disable the other two breakpoints, and continue to the one with
224# the ignore count. Make sure you hit it the third time, x should
225# be 3 then.
226#
227
228gdb_test "disable 7" "" "Disable other breakpoints"
229gdb_test "disable 5" "" "Disable other breakpoints"
230
231gdb_test "continue" \
232 {.*Breakpoint.*pendfunc1.*\(x=3\) at.*pendshr.c:27.*printf.*;} \
233"continue to resolved breakpoint 3"
234
18fe2033
JJ
235delete_breakpoints
236
237gdb_breakpoint "main"
238
239#
240# Set non-existent pending breakpoint
241#
242gdb_test_multiple "break imaginary" "set imaginary pending breakpoint" {
9f27c604 243 -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" {
18fe2033
JJ
244 gdb_test "y" "Breakpoint.*imaginary.*pending." \
245 "set imaginary pending breakpoint"
246 }
247}
248
249#
250# rerun program and make sure that any pending breakpoint remains and no
251# error messages are issued for the missing function
252#
253
254rerun_to_main
0a5e7efe 255
18fe2033
JJ
256gdb_test "info break" \
257 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
258\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline.*
259\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*imaginary.*" \
260"verify pending breakpoint after restart"