]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.c++/overload.exp
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.c++ / overload.exp
1 # Copyright (C) 1998 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 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)
21
22 # This file is part of the gdb testsuite
23 #
24 # tests for overloaded member functions. Command Line calls
25 #
26
27
28 if $tracelevel then {
29 strace $tracelevel
30 }
31
32 #
33 # test running programs
34 #
35 set prms_id 0
36 set bug_id 0
37
38 set testfile "overload"
39 set srcfile ${testfile}.cc
40 set binfile ${objdir}/${subdir}/${testfile}
41
42 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
43 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44 }
45
46
47 gdb_exit
48 gdb_start
49 gdb_reinitialize_dir $srcdir/$subdir
50 gdb_load ${binfile}
51
52 # set it up at a breakpoint so we can play with the variable values
53 #
54 if ![runto_main] then {
55 perror "couldn't run to breakpoint"
56 continue
57 }
58
59 send_gdb "break marker1\n" ; gdb_expect -re ".*$gdb_prompt $"
60
61 send_gdb "cont\n"
62 gdb_expect {
63 -re "Break.* marker1 \\(\\) at .*:$decimal.*$gdb_prompt $" {
64 send_gdb "up\n"
65 gdb_expect {
66 -re ".*$gdb_prompt $" {}
67 timeout { fail "up from marker1" }
68 }
69 }
70 -re "$gdb_prompt $" { fail "continue to marker1" }
71 timeout { fail "(timeout) continue to marker1" }
72 }
73
74
75 send_gdb "print foo_instance1\n"
76 gdb_expect {
77 -re ".\[0-9\]* = \{ifoo = 111, ccpfoo = 0x0\}\r\n$gdb_prompt $" {
78 pass "print foo_instance1"
79 }
80 -re ".*$gdb_prompt $" { fail "print foo_instance1" }
81 timeout { fail "(timeout) print foo_instance1" }
82 }
83
84
85 send_gdb "ptype foo_instance1\n"
86 gdb_expect {
87 -re "type = class foo \{.*public:.*int ifoo;.*const char \\*ccpfoo;.*foo\\(int\\);.*foo\\(int, (const char|char const) \\*\\);.*foo\\(foo &\\);.*~foo\\(void\\);.*void foofunc\\(int\\);.*void foofunc\\(int, signed char \\*\\);.*int overload1arg\\(void\\);.*int overload1arg\\(char\\);.*int overload1arg\\(signed char\\);.*int overload1arg\\(unsigned char\\);.*int overload1arg\\(short\\);.*int overload1arg\\(unsigned short\\);.*int overload1arg\\(int\\);.*int overload1arg\\(unsigned int\\);.*int overload1arg\\(long\\);.*int overload1arg\\(unsigned long\\);.*int overload1arg\\(float\\);.*int overload1arg\\(double\\);.*int overloadargs\\(int\\);.*int overloadargs\\(int, int\\);.*int overloadargs\\(int, int, int\\);.*int overloadargs\\(int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int, int, int, int, int\\);.*int overloadargs\\(int, int, int, int, int, int, int, int, int, int, int\\);\r\n\}\r\n$gdb_prompt $" {
88 pass "ptype foo_instance1 (HP aCC -- known quirk with ~foo parameter list)"
89 }
90 -re ".*$gdb_prompt $" { fail "ptype foo_instance1" }
91 timeout { fail "(timeout) ptype foo_instance1" }
92 }
93
94 send_gdb "print foo_instance2\n"
95 gdb_expect {
96 -re ".\[0-9\]* = \{ifoo = 222, ccpfoo = $hex \"A\"\}\r\n$gdb_prompt $" {
97 pass "print foo_instance2"
98 }
99 -re ".*$gdb_prompt $" { fail "print foo_instance2" }
100 timeout { fail "(timeout) print foo_instance2" }
101 }
102
103 send_gdb "print foo_instance3\n"
104 gdb_expect {
105 -re ".\[0-9\]* = \{ifoo = 222, ccpfoo = $hex \"A\"\}\r\n$gdb_prompt $" {
106 pass "print foo_instance3"
107 }
108 -re ".*$gdb_prompt $" { fail "print foo_instance3" }
109 timeout { fail "(timeout) print foo_instance3" }
110 }
111
112
113
114 send_gdb "print foo_instance1.overloadargs(1)\n"
115 gdb_expect {
116 -re ".\[0-9\]* = 1\r\n$gdb_prompt $" {
117 pass "print call overloaded func 1 arg"
118 }
119 -re ".*$gdb_prompt $" { fail "print call overloaded func 1 arg" }
120 timeout { fail "(timeout) print call overloaded func 1 arg" }
121 }
122
123 send_gdb "print foo_instance1.overloadargs(1, 2)\n"
124 gdb_expect {
125 -re ".\[0-9\]* = 2\r\n$gdb_prompt $" {
126 pass "print call overloaded func 2 args"
127 }
128 -re ".*$gdb_prompt $" { fail "print call overloaded func 2 args" }
129 timeout { fail "(timeout) print call overloaded func 2 args" }
130 }
131
132
133 send_gdb "print foo_instance1.overloadargs(1, 2, 3)\n"
134 gdb_expect {
135 -re ".\[0-9\]* = 3\r\n$gdb_prompt $" {
136 pass "print call overloaded func 3 args"
137 }
138 -re ".*$gdb_prompt $" { fail "print call overloaded func 3 args" }
139 timeout { fail "(timeout) print call overloaded func 3 args" }
140 }
141
142
143 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4)\n"
144 gdb_expect {
145 -re ".\[0-9\]* = 4\r\n$gdb_prompt $" {
146 pass "print call overloaded func 4 args"
147 }
148 -re ".*$gdb_prompt $" { fail "print call overloaded func 4 args" }
149 timeout { fail "(timeout) print call overloaded func 4 args" }
150 }
151
152
153 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5)\n"
154 gdb_expect {
155 -re ".\[0-9\]* = 5\r\n$gdb_prompt $" {
156 pass "print call overloaded func 5 args"
157 }
158 -re ".*$gdb_prompt $" { fail "print call overloaded func 5 args" }
159 timeout { fail "(timeout) print call overloaded func 5 args" }
160 }
161
162
163 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6)\n"
164 gdb_expect {
165 -re ".\[0-9\]* = 6\r\n$gdb_prompt $" {
166 pass "print call overloaded func 6 args"
167 }
168 -re ".*$gdb_prompt $" { fail "print call overloaded func 6 args" }
169 timeout { fail "(timeout) print call overloaded func 6 args" }
170 }
171
172
173 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6, 7)\n"
174 gdb_expect {
175 -re ".\[0-9\]* = 7\r\n$gdb_prompt $" {
176 pass "print call overloaded func 7 args"
177 }
178 -re ".*$gdb_prompt $" { fail "print call overloaded func 7 args" }
179 timeout { fail "(timeout) print call overloaded func 7 args" }
180 }
181
182
183 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6, 7, 8)\n"
184 gdb_expect {
185 -re ".\[0-9\]* = 8\r\n$gdb_prompt $" {
186 pass "print call overloaded func 8 args"
187 }
188 -re ".*$gdb_prompt $" { fail "print call overloaded func 8 args" }
189 timeout { fail "(timeout) print call overloaded func 8 args" }
190 }
191
192
193 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6, 7, 8, 9)\n"
194 gdb_expect {
195 -re ".\[0-9\]* = 9\r\n$gdb_prompt $" {
196 pass "print call overloaded func 9 args"
197 }
198 -re ".*$gdb_prompt $" { fail "print call overloaded func 9 args" }
199 timeout { fail "(timeout) print call overloaded func 9 args" }
200 }
201
202
203 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)\n"
204 gdb_expect {
205 -re ".\[0-9\]* = 10\r\n$gdb_prompt $" {
206 pass "print call overloaded func 10 args"
207 }
208 -re ".*$gdb_prompt $" { fail "print call overloaded func 10 args" }
209 timeout { fail "(timeout) print call overloaded func 10 args" }
210 }
211
212
213 send_gdb "print foo_instance1.overloadargs(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11)\n"
214 gdb_expect {
215 -re ".\[0-9\]* = 11\r\n$gdb_prompt $" {
216 pass "print call overloaded func 11 args"
217 }
218 -re ".*$gdb_prompt $" { fail "print call overloaded func 11 args" }
219 timeout { fail "(timeout) print call overloaded func 11 args" }
220 }
221
222
223 send_gdb "print foo_instance1.overload1arg()\n"
224 gdb_expect {
225 -re ".\[0-9\]* = 1\r\n$gdb_prompt $" {
226 pass "print call overloaded func void arg"
227 }
228 -re ".*$gdb_prompt $" { fail "print call overloaded func void arg" }
229 timeout { fail "(timeout) print call overloaded func void arg" }
230 }
231
232 send_gdb "print foo_instance1.overload1arg((char)arg2)\n"
233 gdb_expect {
234 -re ".\[0-9\]* = 2\r\n$gdb_prompt $" {
235 pass "print call overloaded func char arg"
236 }
237 -re ".*$gdb_prompt $" { fail "print call overloaded func char arg" }
238 timeout { fail "(timeout) print call overloaded func char arg" }
239 }
240
241 send_gdb "print foo_instance1.overload1arg((signed char)arg3)\n"
242 gdb_expect {
243 -re ".\[0-9\]* = 3\r\n$gdb_prompt $" {
244 pass "print call overloaded func signed char arg"
245 }
246 -re ".*$gdb_prompt $" { fail "print call overloaded func signed char arg" }
247 timeout { fail "(timeout) print call overloaded func signed char arg" }
248 }
249
250
251 send_gdb "print foo_instance1.overload1arg((unsigned char)arg4)\n"
252 gdb_expect {
253 -re ".\[0-9\]* = 4\r\n$gdb_prompt $" {
254 pass "print call overloaded func unsigned char arg"
255 }
256 -re ".*$gdb_prompt $" { fail "print call overloaded func unsigned char arg" }
257 timeout { fail "(timeout) print call overloaded func unsigned char arg" }
258 }
259
260
261 send_gdb "print foo_instance1.overload1arg((short)arg5)\n"
262 gdb_expect {
263 -re ".\[0-9\]* = 5\r\n$gdb_prompt $" {
264 pass "print call overloaded func short arg"
265 }
266 -re ".*$gdb_prompt $" { fail "print call overloaded func short arg" }
267 timeout { fail "(timeout) print call overloaded func short arg" }
268 }
269
270
271 send_gdb "print foo_instance1.overload1arg((unsigned short)arg6)\n"
272 gdb_expect {
273 -re ".\[0-9\]* = 6\r\n$gdb_prompt $" {
274 pass "print call overloaded func unsigned short arg"
275 }
276 -re ".*$gdb_prompt $" { fail "print call overloaded func unsigned short arg" }
277 timeout { fail "(timeout) print call overloaded func unsigned short arg" }
278 }
279
280
281 send_gdb "print foo_instance1.overload1arg((int)arg7)\n"
282 gdb_expect {
283 -re ".\[0-9\]* = 7\r\n$gdb_prompt $" {
284 pass "print call overloaded func int arg"
285 }
286 -re ".*$gdb_prompt $" { fail "print call overloaded func int arg" }
287 timeout { fail "(timeout) print call overloaded func int arg" }
288 }
289
290
291 send_gdb "print foo_instance1.overload1arg((unsigned int)arg8)\n"
292 gdb_expect {
293 -re ".\[0-9\]* = 8\r\n$gdb_prompt $" {
294 pass "print call overloaded func unsigned int arg"
295 }
296 -re ".*$gdb_prompt $" { fail "print call overloaded func unsigned int arg" }
297 timeout { fail "(timeout) print call overloaded func unsigned int arg" }
298 }
299
300
301 send_gdb "print foo_instance1.overload1arg((long)arg9)\n"
302 gdb_expect {
303 -re ".\[0-9\]* = 9\r\n$gdb_prompt $" {
304 pass "print call overloaded func long arg"
305 }
306 -re ".*$gdb_prompt $" { fail "print call overloaded func long arg" }
307 timeout { fail "(timeout) print call overloaded func long arg" }
308 }
309
310
311 send_gdb "print foo_instance1.overload1arg((unsigned long)arg10)\n"
312 gdb_expect {
313 -re ".\[0-9\]* = 10\r\n$gdb_prompt $" {
314 pass "print call overloaded func unsigned long arg"
315 }
316 -re ".*$gdb_prompt $" { fail "print call overloaded func unsigned long arg" }
317 timeout { fail "(timeout) print call overloaded func unsigned long arg" }
318 }
319
320
321 send_gdb "print foo_instance1.overload1arg((float)arg11)\n"
322 gdb_expect {
323 -re ".\[0-9\]* = 11\r\n$gdb_prompt $" {
324 pass "print call overloaded func float arg"
325 }
326 -re ".*$gdb_prompt $" { fail "print call overloaded func float arg" }
327 timeout { fail "(timeout) print call overloaded func float arg" }
328 }
329
330
331 send_gdb "print foo_instance1.overload1arg((double)arg12)\n"
332 gdb_expect {
333 -re ".\[0-9\]* = 12\r\n$gdb_prompt $" {
334 pass "print call overloaded func double arg"
335 }
336 -re ".*$gdb_prompt $" { fail "print call overloaded func double arg" }
337 timeout { fail "(timeout) print call overloaded func double arg" }
338 }