*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.c++ / ovldbreak.exp
CommitLineData
b2bbed47 1# Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
c906108c
SS
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
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# written by Elena Zannoni (ezannoni@cygnus.com)
b2bbed47 21# modified by Michael Chastain (chastain@redhat.com)
c906108c
SS
22
23# This file is part of the gdb testsuite
24#
25# tests for overloaded member functions. Set breakpoints on
26# overloaded member functions
27#
28
29
30if $tracelevel then {
31 strace $tracelevel
32 }
33
34#
35# test running programs
36#
37set prms_id 0
38set bug_id 0
39
d4f3574e
SS
40if { [skip_cplus_tests] } { continue }
41
c906108c
SS
42set testfile "ovldbreak"
43set srcfile ${testfile}.cc
44set binfile ${objdir}/${subdir}/${testfile}
45
46if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
47 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
48}
49
50gdb_exit
51gdb_start
52gdb_reinitialize_dir $srcdir/$subdir
53gdb_load ${binfile}
54
55# set it up at a breakpoint so we can play with the variable values
56#
57if ![runto_main] then {
58 perror "couldn't run to breakpoint"
59 continue
60}
61
62
63
b2bbed47
MC
64# When I ask gdb to set a breakpoint on an overloaded function,
65# gdb gives me a choice menu. I might get stuck in that choice menu
66# (for example, if C++ name mangling is not working properly).
67#
68# This procedure issues a command that works at either the menu
69# prompt or the command prompt to get back to the command prompt.
70#
71# Note that an empty line won't do it (it means 'repeat the previous command'
72# at top level). A line with a single space in it works nicely.
c906108c 73
b2bbed47
MC
74proc take_gdb_out_of_choice_menu {} {
75 global gdb_prompt
76 send_gdb " \n"
77 gdb_expect {
78 -re ".*$gdb_prompt $" {
79 }
80 timeout {
81 perror "could not resynchronize to command prompt (timeout)"
82 continue
83 }
84 }
85}
c906108c
SS
86
87
c906108c 88
b2bbed47
MC
89# This procedure sets an overloaded breakpoint.
90# When I ask for such a breakpoint, gdb gives me a menu of 'cancel' 'all'
91# and a bunch of choices. I then choose from that menu by number.
c906108c 92
b2bbed47
MC
93proc set_bp_overloaded {name expectedmenu mychoice bpnumber linenumber} {
94 global gdb_prompt hex srcfile
c906108c 95
b2bbed47
MC
96 # Get into the overload menu.
97 send_gdb "break $name\n"
98 gdb_expect {
99 -re "$expectedmenu" {
100 pass "bp menu for $name choice $mychoice"
c906108c 101
b2bbed47
MC
102 # Choose my choice.
103 send_gdb "$mychoice\n"
c906108c 104 gdb_expect {
b2bbed47
MC
105 -re "Breakpoint $bpnumber at $hex: file.*$srcfile, line $linenumber.\r\n$gdb_prompt $" {
106 pass "set bp $bpnumber on $name $mychoice line $linenumber"
107 }
108 -re ".*$gdb_prompt $" {
109 fail "set bp $bpnumber on $name $mychoice line $linenumber (bad bp)"
110 }
111 timeout {
112 fail "set bp $bpnumber on $name $mychoice line $linenumber (timeout)"
113 take_gdb_out_of_choice_menu
114 }
115 }
116 }
117 -re ".*\r\n> " {
118 fail "bp menu for $name choice $mychoice (bad menu)"
119 take_gdb_out_of_choice_menu
120 }
121 -re ".*$gdb_prompt $" {
122 fail "bp menu for $name choice $mychoice (no menu)"
123 }
124 timeout {
125 fail "bp menu for $name choice $mychoice (timeout)"
126 take_gdb_out_of_choice_menu
127 }
128 }
129}
c906108c 130
b2bbed47
MC
131# This is the expected menu for overload1arg.
132# Note the arg type variations on lines 6 and 13.
133# This accommodates different versions of g++.
c906108c 134
b2bbed47 135set menu_overload1arg "\\\[0\\\] cancel\r\n\\\[1\\\] all\r\n\\\[2\\\] foo::overload1arg\\(double\\) at.*$srcfile:121\r\n\\\[3\\\] foo::overload1arg\\(float\\) at.*$srcfile:120\r\n\\\[4\\\] foo::overload1arg\\(unsigned long\\) at.*$srcfile:119\r\n\\\[5\\\] foo::overload1arg\\(long\\) at.*$srcfile:118\r\n\\\[6\\\] foo::overload1arg\\((unsigned int|unsigned)\\) at.*$srcfile:117\r\n\\\[7\\\] foo::overload1arg\\(int\\) at.*$srcfile:116\r\n\\\[8\\\] foo::overload1arg\\(unsigned short\\) at.*$srcfile:115\r\n\\\[9\\\] foo::overload1arg\\(short\\) at.*$srcfile:114\r\n\\\[10\\\] foo::overload1arg\\(unsigned char\\) at.*$srcfile:113\r\n\\\[11\\\] foo::overload1arg\\(signed char\\) at.*$srcfile:112\r\n\\\[12\\\] foo::overload1arg\\(char\\) at.*$srcfile:111\r\n\\\[13\\\] foo::overload1arg\\((void|)\\) at.*$srcfile:110\r\n> $"
c906108c 136
c906108c
SS
137
138
b2bbed47 139# Set breakpoints on foo::overload1arg, one by one.
c906108c 140
b2bbed47
MC
141set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 12 2 111
142set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 11 3 112
143set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 10 4 113
144set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 9 5 114
145set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 8 6 115
146set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 7 7 116
147set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 6 8 117
148set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 5 9 118
149set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 4 10 119
150set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 3 11 120
151set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 2 12 121
152set_bp_overloaded "foo::overload1arg" "$menu_overload1arg" 13 13 110
c906108c
SS
153
154
c906108c 155
b2bbed47 156# Verify the breakpoints.
c906108c
SS
157
158gdb_test "info break" \
159 "Num Type\[\t \]+Disp Enb Address\[\t \]+What.*
d8937120 160\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in main at.*$srcfile:49\r
c906108c 161\[\t \]+breakpoint already hit 1 time\r
d8937120
MC
162\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(char\\) at.*$srcfile:111\r
163\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(signed char\\) at.*$srcfile:112\r
164\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned char\\) at.*$srcfile:113\r
165\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(short\\) at.*$srcfile:114\r
166\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned short\\) at.*$srcfile:115\r
167\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(int\\) at.*$srcfile:116\r
168\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((unsigned|unsigned int)\\) at.*$srcfile:117\r
169\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(long\\) at.*$srcfile:118\r
170\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned long\\) at.*$srcfile:119\r
171\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(float\\) at.*$srcfile:120\r
172\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(double\\) at.*$srcfile:121\r
173\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((void|)\\) at.*$srcfile:110" \
b2bbed47 174 "breakpoint info (after setting one-by-one)"
c906108c
SS
175
176
177
b2bbed47
MC
178# Test choice "cancel".
179# This is copy-and-paste from set_bp_overloaded.
c906108c
SS
180
181send_gdb "break foo::overload1arg\n"
182gdb_expect {
b2bbed47
MC
183 -re "$menu_overload1arg" {
184 pass "bp menu for foo::overload1arg choice cancel"
185 # Choose cancel.
186 send_gdb "0\n"
187 gdb_expect {
188 -re "canceled\r\n$gdb_prompt $" {
189 pass "set bp on overload1arg canceled"
190 }
191 -re "cancelled\r\n$gdb_prompt $" {
192 pass "set bp on overload1arg canceled"
193 }
194 -re ".*$gdb_prompt $" {
195 fail "set bp on overload1arg canceled (bad message)"
196 }
197 timeout {
198 fail "set bp on overload1arg canceled (timeout)"
199 take_gdb_out_of_choice_menu
200 }
201 }
202 }
203 -re ".*\r\n> " {
204 fail "bp menu for foo::overload1arg choice cancel (bad menu)"
205 take_gdb_out_of_choice_menu
206 }
207 -re ".*$gdb_prompt $" {
208 fail "bp menu for foo::overload1arg choice cancel (no menu)"
209 }
210 timeout {
211 fail "bp menu for foo::overload1arg choice cancel (timeout)"
212 take_gdb_out_of_choice_menu
213 }
214}
c906108c
SS
215
216gdb_test "info break" \
217 "Num Type\[\t \]+Disp Enb Address\[\t \]+What.*
d8937120 218\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in main at.*$srcfile:49\r
c906108c 219\[\t \]+breakpoint already hit 1 time\r
d8937120
MC
220\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(char\\) at.*$srcfile:111\r
221\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(signed char\\) at.*$srcfile:112\r
222\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned char\\) at.*$srcfile:113\r
223\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(short\\) at.*$srcfile:114\r
224\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned short\\) at.*$srcfile:115\r
225\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(int\\) at.*$srcfile:116\r
226\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((unsigned|unsigned int)\\) at.*$srcfile:117\r
227\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(long\\) at.*$srcfile:118\r
228\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned long\\) at.*$srcfile:119\r
229\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(float\\) at.*$srcfile:120\r
230\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(double\\) at.*$srcfile:121\r
231\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((void|)\\) at.*$srcfile:110" \
b2bbed47 232 "breakpoint info (after cancel)"
c906108c
SS
233
234
235
b2bbed47 236# Delete these breakpoints.
c906108c
SS
237
238send_gdb "delete breakpoints\n"
239gdb_expect {
b2bbed47 240 -re "Delete all breakpoints.* $" {
c906108c
SS
241 send_gdb "y\n"
242 gdb_expect {
243 -re ".*$gdb_prompt $" {
b2bbed47
MC
244 pass "delete all breakpoints"
245 }
246 timeout {
247 fail "delete all breakpoints (timeout)"
c906108c 248 }
c906108c
SS
249 }
250 }
b2bbed47
MC
251 timeout {
252 fail "delete all breakpoints (timeout)"
253 }
c906108c
SS
254}
255
b2bbed47 256gdb_test "info breakpoints" "No breakpoints or watchpoints." "breakpoint info (after delete)"
c906108c
SS
257
258
c906108c 259
b2bbed47
MC
260# Test choice "all".
261# This is copy-and-paste from set_bp_overloaded.
c906108c 262
b2bbed47
MC
263send_gdb "break foo::overload1arg\n"
264gdb_expect {
265 -re "$menu_overload1arg" {
266 pass "bp menu for foo::overload1arg choice all"
267 # Choose all.
268 send_gdb "1\n"
269 gdb_expect {
270 -re "Breakpoint $decimal at $hex: file.*$srcfile, line 121.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 120.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 119.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 118.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 117.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 116.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 115.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 114.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 113.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 112.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 111.\r\nBreakpoint $decimal at $hex: file.*$srcfile, line 110.\r\nwarning: Multiple breakpoints were set.\r\nwarning: Use the .delete. command to delete unwanted breakpoints.\r\n$gdb_prompt $" {
271 pass "set bp on overload1arg all"
272 }
273 -re ".*$gdb_prompt $" {
274 fail "set bp on overload1arg all (bad message)"
275 }
276 timeout {
277 fail "set bp on overload1arg all (timeout)"
278 take_gdb_out_of_choice_menu
279 }
280 }
281 }
282 -re ".*\r\n> " {
283 fail "bp menu for foo::overload1arg choice all (bad menu)"
284 take_gdb_out_of_choice_menu
285 }
286 -re ".*$gdb_prompt $" {
287 fail "bp menu for foo::overload1arg choice all (no menu)"
288 }
289 timeout {
290 fail "bp menu for foo::overload1arg choice all (timeout)"
291 take_gdb_out_of_choice_menu
292 }
293}
c906108c
SS
294
295gdb_test "info break" \
296 "Num Type\[\t \]+Disp Enb Address\[\t \]+What.*
d8937120
MC
297\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(double\\) at.*$srcfile:121\r
298\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(float\\) at.*$srcfile:120\r
299\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned long\\) at.*$srcfile:119\r
300\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(long\\) at.*$srcfile:118\r
301\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((unsigned|unsigned int)\\) at.*$srcfile:117\r
302\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(int\\) at.*$srcfile:116\r
303\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned short\\) at.*$srcfile:115\r
304\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(short\\) at.*$srcfile:114\r
305\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(unsigned char\\) at.*$srcfile:113\r
306\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(signed char\\) at.*$srcfile:112\r
307\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\(char\\) at.*$srcfile:111\r
308\[0-9\]+\[\t \]+breakpoint keep y\[\t \]+$hex\[\t \]+in foo::overload1arg\\((void|)\\) at.*$srcfile:110" \
b2bbed47
MC
309 "breakpoint info (after setting on all)"
310
c906108c
SS
311
312
b2bbed47
MC
313# Run through each breakpoint.
314
d1fe6965
DC
315# NOTE: carlton/2003-02-03: I'm seeing failures on some of the tests,
316# with the wrong arg being printed out. Michael Chastain sees
317# failures at times, too, albeit fewer than I do.
318
319proc continue_to_bp_overloaded {might_kfail bpnumber argtype actuals} {
dfcd3bfb 320 global gdb_prompt hex decimal srcfile
b2bbed47
MC
321
322 send_gdb "continue\n"
c906108c 323 gdb_expect {
b2bbed47
MC
324 -re "Continuing.\r\n\r\nBreakpoint ${bpnumber}, (${hex} in )?foo::overload1arg(\\(${argtype}\\))? \\(this=${hex}(, )?${actuals}\\) at.*${srcfile}:${decimal}\r\n${decimal}\[\t \]+int foo::overload1arg \\(${argtype}( arg)?\\).*\r\n.*$gdb_prompt $" {
325 pass "continue to bp overloaded : ${argtype}"
326 }
d1fe6965
DC
327 -re "Continuing.\r\n\r\nBreakpoint ${bpnumber}, (${hex} in )?foo::overload1arg(\\(${argtype}\\))? \\(this=${hex}, arg=.*\\) at.*${srcfile}:${decimal}\r\n${decimal}\[\t \]+int foo::overload1arg \\(${argtype}( arg)?\\).*\r\n.*$gdb_prompt $" {
328 if $might_kfail {
329 kfail "gdb/1025" "continue to bp overloaded : ${argtype}"
330 } else {
331 fail "continue to bp overloaded : ${argtype}"
332 }
333 }
b2bbed47
MC
334 -re ".*$gdb_prompt $" {
335 fail "continue to bp overloaded : ${argtype}"
336 }
337 timeout {
338 fail "continue to bp overloaded : ${argtype} (timeout)"
339 }
c906108c 340 }
dfcd3bfb 341}
c906108c 342
d1fe6965
DC
343continue_to_bp_overloaded 0 25 "(void|)" ""
344continue_to_bp_overloaded 1 24 "char" "arg=2 \\'\\\\002\\'"
345continue_to_bp_overloaded 1 23 "signed char" "arg=3 \\'\\\\003\\'"
346continue_to_bp_overloaded 1 22 "unsigned char" "arg=4 \\'\\\\004\\'"
347continue_to_bp_overloaded 1 21 "short" "arg=5"
348continue_to_bp_overloaded 1 20 "unsigned short" "arg=6"
349continue_to_bp_overloaded 0 19 "int" "arg=7"
350continue_to_bp_overloaded 0 18 "(unsigned|unsigned int)" "arg=8"
351continue_to_bp_overloaded 0 17 "long" "arg=9"
352continue_to_bp_overloaded 0 16 "unsigned long" "arg=10"
353continue_to_bp_overloaded 0 15 "float" "arg=100"
354continue_to_bp_overloaded 1 14 "double" "arg=200"
b2bbed47
MC
355
356
dfcd3bfb 357
b2bbed47 358# That's all, folks.
dfcd3bfb
JM
359
360gdb_continue_to_end "finish program"
This page took 0.414005 seconds and 4 git commands to generate.