2004-01-10 Michael Chastain <mec.gnu@mindspring.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / classes.exp
1 # Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2 # 2003, 2004 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 # Please email any bugs, comments, and/or additions to this file to:
19 # bug-gdb@prep.ai.mit.edu
20
21 # This file was written by Fred Fish. (fnf@cygnus.com)
22 # And rewritten by Michael Chastain <mec.gnu@mindspring.com>.
23
24 set ws "\[\r\n\t \]+"
25 set nl "\[\r\n\]+"
26
27 if $tracelevel then {
28 strace $tracelevel
29 }
30
31 if { [skip_cplus_tests] } { continue }
32
33 set testfile "misc"
34 set srcfile ${testfile}.cc
35 set binfile ${objdir}/${subdir}/${testfile}
36
37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
38 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
39 }
40
41 # Test ptype of class objects.
42 #
43 # This code accepts the output of gcc v2 and v3, dwarf-2 and stabs+.
44 # It could use some expansion with other compilers such as hp-ux ac++.
45 #
46 # There are lots of variations in the output:
47 #
48 # . gcc -stabs+ emits debug info for implicit member functions:
49 # operator=, copy ctor, ctor. gcc -gdwarf-2 does not.
50 #
51 # . gcc with abi version 1 puts the implicit member functions
52 # at the beginning of the member function list; with abi version 2,
53 # the implicit member functions are at the end of the member function
54 # list. This appears as an output difference with -gstabs+.
55 # gcc 3.3.X defaults to abi version 1, and gcc 3.4 will default
56 # to abi version 2.
57 #
58 # . gcc v2 shows data members for virtual base pointers.
59 # gcc v3 does not.
60 #
61 # . gdb always prints "class" for both "class" and "struct".
62 # In the future, I should accept "struct" in case gdb improves.
63
64 proc test_ptype_class_objects {} {
65 global gdb_prompt
66 global ws
67 global nl
68
69 # Simple type.
70
71 gdb_test_multiple "ptype struct default_public_struct" "ptype struct default_public_struct" {
72 -re "type = class default_public_struct \{${ws}public:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
73 # gcc 2.95.3 -gdwarf-2
74 # gcc 3.3.2 -gdwarf-2
75 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
76 pass "ptype struct default_public_struct"
77 }
78 -re "type = class default_public_struct \{${ws}public:${ws}int a;${ws}int b;${ws}default_public_struct ?& ?operator ?=\\(default_public_struct const ?&\\);${ws}default_public_struct\\(default_public_struct const ?&\\);${ws}default_public_struct\\((void|)\\);$nl\}$nl$gdb_prompt $" {
79 # gcc 2.95.3 -gstabs+
80 # gcc 3.3.2 -gstabs+
81 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
82 pass "ptype struct default_public_struct"
83 }
84 }
85
86 # Same test, slightly different type.
87
88 gdb_test_multiple "ptype struct explicit_public_struct" "ptype struct explicit_public_struct" {
89 -re "type = class explicit_public_struct \{${ws}public:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
90 # gcc 2.95.3 -gdwarf-2
91 # gcc 3.3.2 -gdwarf-2
92 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
93 pass "ptype struct explicit_public_struct"
94 }
95 -re "type = class explicit_public_struct \{${ws}public:${ws}int a;${ws}int b;${ws}explicit_public_struct ?& ?operator ?=\\(explicit_public_struct const ?&\\);${ws}explicit_public_struct\\(explicit_public_struct const ?&\\);${ws}explicit_public_struct\\((void|)\\);$nl\}$nl$gdb_prompt $" {
96 # gcc 2.95.3 -gstabs+
97 # gcc 3.3.2 -gstabs+
98 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
99 pass "ptype struct explicit_public_struct"
100 }
101 }
102
103 # Same test, slightly different type.
104
105 gdb_test_multiple "ptype struct protected_struct" "ptype struct protected_struct" {
106 -re "type = class protected_struct \{${ws}protected:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
107 # gcc 2.95.3 -gdwarf-2
108 # gcc 3.3.2 -gdwarf-2
109 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
110 pass "ptype struct protected_struct"
111 }
112 -re "type = class protected_struct \{${ws}protected:${ws}int a;${ws}int b;${ws}public:${ws}protected_struct ?& ?operator ?=\\(protected_struct const ?&\\);${ws}protected_struct\\(protected_struct const ?&\\);${ws}protected_struct\\((void|)\\);$nl\}$nl$gdb_prompt $" {
113 # gcc 2.95.3 -gstabs+
114 # gcc 3.3.2 -gstabs+
115 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
116 pass "ptype struct protected_struct"
117 }
118 }
119
120 # Same test, slightly different type.
121
122 gdb_test_multiple "ptype struct private_struct" "ptype struct private_struct" {
123 -re "type = class private_struct \{${ws}private:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
124 # gcc 2.95.3 -gdwarf-2
125 # gcc 3.3.2 -gdwarf-2
126 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
127 pass "ptype struct private_struct"
128 }
129 -re "type = class private_struct \{${ws}private:${ws}int a;${ws}int b;${ws}public:${ws}private_struct ?& ?operator ?=\\(private_struct const ?&\\);${ws}private_struct\\(private_struct const ?&\\);${ws}private_struct\\((void|)\\);$nl\}$nl$gdb_prompt $" {
130 # gcc 2.95.3 -gstabs+
131 # gcc 3.3.2 -gstabs+
132 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
133 pass "ptype struct private_struct"
134 }
135 }
136
137 # Similar test, bigger type.
138
139 gdb_test_multiple "ptype struct mixed_protection_struct" "ptype struct mixed_protection_struct" {
140 -re "type = class mixed_protection_struct \{${ws}public:${ws}int a;${ws}int b;${ws}private:${ws}int c;${ws}int d;${ws}protected:${ws}int e;${ws}int f;${ws}public:${ws}int g;${ws}private:${ws}int h;${ws}protected:${ws}int i;$nl\}$nl$gdb_prompt $" {
141 # gcc 2.95.3 -gdwarf-2
142 # gcc 3.3.2 -gdwarf-2
143 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
144 pass "ptype struct mixed_protection_struct"
145 }
146 -re "type = class mixed_protection_struct \{${ws}public:${ws}int a;${ws}int b;${ws}private:${ws}int c;${ws}int d;${ws}protected:${ws}int e;${ws}int f;${ws}public:${ws}int g;${ws}private:${ws}int h;${ws}protected:${ws}int i;${ws}public:${ws}mixed_protection_struct ?& ?operator ?=\\(mixed_protection_struct const ?&\\);${ws}mixed_protection_struct\\(mixed_protection_struct const ?&\\);${ws}mixed_protection_struct\\((void|)\\);$nl\}$nl$gdb_prompt $" {
147 # gcc 2.95.3 -gstabs+
148 # gcc 3.3.2 -gstabs+
149 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
150 pass "ptype struct mixed_protection_struct"
151 }
152 }
153
154 # All that again with "class" instead of "struct".
155 # gdb does not care about the difference anyways.
156
157 gdb_test_multiple "ptype class public_class" "ptype class public_class" {
158 -re "type = class public_class \{${ws}public:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
159 # gcc 2.95.3 -gdwarf-2
160 # gcc 3.3.2 -gdwarf-2
161 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
162 pass "ptype class public_class"
163 }
164 -re "type = class public_class \{${ws}public:${ws}int a;${ws}int b;${ws}public_class ?& ?operator ?=\\(public_class const ?&\\);${ws}public_class\\(public_class const ?&\\);${ws}public_class\\((void|)\\);$nl\}$nl$gdb_prompt $" {
165 # gcc 2.95.3 -gstabs+
166 # gcc 3.3.2 -gstabs+
167 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
168 pass "ptype class public_class"
169 }
170 }
171
172 # Same test, slightly different type.
173
174 gdb_test_multiple "ptype class protected_class" "ptype class protected_class" {
175 -re "type = class protected_class \{${ws}protected:${ws}int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
176 # gcc 2.95.3 -gdwarf-2
177 # gcc 3.3.2 -gdwarf-2
178 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
179 pass "ptype class protected_class"
180 }
181 -re "type = class protected_class \{${ws}protected:${ws}int a;${ws}int b;${ws}public:${ws}protected_class ?& ?operator ?=\\(protected_class const ?&\\);${ws}protected_class\\(protected_class const ?&\\);${ws}protected_class\\((void|)\\);$nl\}$nl$gdb_prompt $" {
182 # gcc 2.95.3 -gstabs+
183 # gcc 3.3.2 -gstabs+
184 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
185 pass "ptype class protected_class"
186 }
187 }
188
189 # Same test, slightly different type.
190 # The 'private' is optional but gdb always prints it.
191
192 gdb_test_multiple "ptype class default_private_class" "ptype class default_private_class" {
193 -re "type = class default_private_class \{${ws}(private:${ws}|)int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
194 # gcc 2.95.3 -gdwarf-2
195 # gcc 3.3.2 -gdwarf-2
196 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
197 pass "ptype class default_private_class"
198 }
199 -re "type = class default_private_class \{${ws}(private:${ws}|)int a;${ws}int b;${ws}public:${ws}default_private_class ?& ?operator ?=\\(default_private_class const ?&\\);${ws}default_private_class\\(default_private_class const ?&\\);${ws}default_private_class\\((void|)\\);$nl\}$nl$gdb_prompt $" {
200 # gcc 2.95.3 -gstabs+
201 # gcc 3.3.2 -gstabs+
202 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
203 pass "ptype class default_private_class"
204 }
205 }
206
207 # Same test, slightly different type.
208
209 gdb_test_multiple "ptype class explicit_private_class" "ptype class explicit_private_class" {
210 -re "type = class explicit_private_class \{${ws}(private:${ws}|)int a;${ws}int b;$nl\}$nl$gdb_prompt $" {
211 # gcc 2.95.3 -gdwarf-2
212 # gcc 3.3.2 -gdwarf-2
213 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
214 pass "ptype class explicit_private_class"
215 }
216 -re "type = class explicit_private_class \{${ws}(private:${ws}|)int a;${ws}int b;${ws}public:${ws}explicit_private_class ?& ?operator ?=\\(explicit_private_class const ?&\\);${ws}explicit_private_class\\(explicit_private_class const ?&\\);${ws}explicit_private_class\\((void|)\\);$nl\}$nl$gdb_prompt $" {
217 # gcc 2.95.3 -gstabs+
218 # gcc 3.3.2 -gstabs+
219 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
220 pass "ptype class explicit_private_class"
221 }
222 }
223
224 # Similar test, bigger type.
225
226 gdb_test_multiple "ptype class mixed_protection_class" "ptype struct mixed_protection_class" {
227 -re "type = class mixed_protection_class \{${ws}public:${ws}int a;${ws}int b;${ws}private:${ws}int c;${ws}int d;${ws}protected:${ws}int e;${ws}int f;${ws}public:${ws}int g;${ws}private:${ws}int h;${ws}protected:${ws}int i;$nl\}$nl$gdb_prompt $" {
228 # gcc 2.95.3 -gdwarf-2
229 # gcc 3.3.2 -gdwarf-2
230 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
231 pass "ptype class mixed_protection_class"
232 }
233 -re "type = class mixed_protection_class \{${ws}public:${ws}int a;${ws}int b;${ws}private:${ws}int c;${ws}int d;${ws}protected:${ws}int e;${ws}int f;${ws}public:${ws}int g;${ws}private:${ws}int h;${ws}protected:${ws}int i;${ws}public:${ws}mixed_protection_class ?& ?operator ?=\\(mixed_protection_class const ?&\\);${ws}mixed_protection_class\\(mixed_protection_class const ?&\\);${ws}mixed_protection_class\\((void|)\\);$nl\}$nl$gdb_prompt $" {
234 # gcc 2.95.3 -gstabs+
235 # gcc 3.3.2 -gstabs+
236 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
237 pass "ptype class mixed_protection_class"
238 }
239 }
240
241 # Here are some classes with inheritance.
242
243 # Base class.
244
245 gdb_test_multiple "ptype class A" "ptype class A" {
246 -re "type = class A \{${ws}public:${ws}int a;${ws}int x;$nl\}$nl$gdb_prompt $" {
247 # gcc 2.95.3 -gdwarf-2
248 # gcc 3.3.2 -gdwarf-2
249 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
250 pass "ptype class A"
251 }
252 -re "type = class A \{${ws}public:${ws}int a;${ws}int x;${ws}A ?& ?operator ?=\\(A const ?&\\);${ws}A\\(A const ?&\\);${ws}A\\((void|)\\);$nl\}$nl$gdb_prompt $" {
253 # gcc 2.95.3 -gstabs+
254 # gcc 3.3.2 -gstabs+
255 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
256 pass "ptype class A"
257 }
258 }
259
260 # Derived class.
261
262 gdb_test_multiple "ptype class B" "ptype class B" {
263 -re "type = class B : public A \{${ws}public:${ws}int b;${ws}int x;$nl\}$nl$gdb_prompt $" {
264 # gcc 2.95.3 -gdwarf-2
265 # gcc 3.3.2 -gdwarf-2
266 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
267 pass "ptype class B"
268 }
269 -re "type = class B : public A \{${ws}public:${ws}int b;${ws}int x;${ws}B ?& ?operator ?=\\(B const ?&\\);${ws}B\\(B const ?&\\);${ws}B\\((void|)\\);$nl\}$nl$gdb_prompt $" {
270 # gcc 2.95.3 -gstabs+
271 # gcc 3.3.2 -gstabs+
272 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
273 pass "ptype class B"
274 }
275 }
276
277 # Derived class.
278
279 gdb_test_multiple "ptype class C" "ptype class C" {
280 -re "type = class C : public A \{${ws}public:${ws}int c;${ws}int x;$nl\}$nl$gdb_prompt $" {
281 # gcc 2.95.3 -gdwarf-2
282 # gcc 3.3.2 -gdwarf-2
283 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
284 pass "ptype class C"
285 }
286 -re "type = class C : public A \{${ws}public:${ws}int c;${ws}int x;${ws}C ?& ?operator ?=\\(C const ?&\\);${ws}C\\(C const ?&\\);${ws}C\\((void|)\\);$nl\}$nl$gdb_prompt $" {
287 # gcc 2.95.3 -gstabs+
288 # gcc 3.3.2 -gstabs+
289 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
290 pass "ptype class C"
291 }
292 }
293
294 # Derived class, multiple inheritance.
295
296 gdb_test_multiple "ptype class D" "ptype class D" {
297 -re "type = class D : public B, public C \{${ws}public:${ws}int d;${ws}int x;$nl\}$nl$gdb_prompt $" {
298 # gcc 2.95.3 -gdwarf-2
299 # gcc 3.3.2 -gdwarf-2
300 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
301 pass "ptype class D"
302 }
303 -re "type = class D : public B, public C \{${ws}public:${ws}int d;${ws}int x;${ws}D ?& ?operator ?=\\(D const ?&\\);${ws}D\\(D const ?&\\);${ws}D\\((void|)\\);$nl\}$nl$gdb_prompt $" {
304 # gcc 2.95.3 -gstabs+
305 # gcc 3.3.2 -gstabs+
306 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
307 pass "ptype class D"
308 }
309 }
310
311 # Derived class.
312
313 gdb_test_multiple "ptype class E" "ptype class E" {
314 -re "type = class E : public D \{${ws}public:${ws}int e;${ws}int x;$nl\}$nl$gdb_prompt $" {
315 # gcc 2.95.3 -gdwarf-2
316 # gcc 3.3.2 -gdwarf-2
317 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
318 pass "ptype class E"
319 }
320 -re "type = class E : public D \{${ws}public:${ws}int e;${ws}int x;${ws}E ?& ?operator ?=\\(E const ?&\\);${ws}E\\(E const ?&\\);${ws}E\\((void|)\\);$nl\}$nl$gdb_prompt $" {
321 # gcc 2.95.3 -gstabs+
322 # gcc 3.3.2 -gstabs+
323 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
324 pass "ptype class E"
325 }
326 }
327
328 # This is a break from inheritance tests.
329 #
330 # gcc 2.X with stabs (stabs or stabs+?) used to have a problem with
331 # static methods whose name is the same as their argument mangling.
332
333 gdb_test_multiple "ptype class Static" "ptype class Static" {
334 -re "type = class Static \{${ws}public:${ws}static void ii\\(int, int\\);$nl\}$nl$gdb_prompt $" {
335 # gcc 2.95.3 -gdwarf-2
336 # gcc 3.3.2 -gdwarf-2
337 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
338 pass "ptype class Static"
339 }
340 -re "type = class Static \{${ws}public:${ws}Static ?& ?operator ?=\\(Static const ?&\\);${ws}Static\\(Static const ?&\\);${ws}Static\\((void|)\\);${ws}static void ii\\(int, int\\);$nl\}$nl$gdb_prompt $" {
341 # gcc 2.95.3 -gstabs+
342 # gcc 3.3.2 -gstabs+
343 pass "ptype class Static"
344 }
345 -re "type = class Static \{${ws}public:${ws}static void ii\\(int, int\\);${ws}Static ?& ?operator ?=\\(Static const ?&\\);${ws}Static\\(Static const ?&\\);${ws}Static\\((void|)\\);$nl\}$nl$gdb_prompt $" {
346 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
347 pass "ptype class Static"
348 }
349 }
350
351 # Here are some virtual inheritance tests.
352
353 gdb_test_multiple "ptype class vA" "ptype class vA" {
354 -re "type = class vA \{${ws}public:${ws}int va;${ws}int vx;$nl\}$nl$gdb_prompt $" {
355 # gcc 2.95.3 -gdwarf-2
356 # gcc 3.3.2 -gdwarf-2
357 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
358 pass "ptype class vA"
359 }
360 -re "type = class vA \{${ws}public:${ws}int va;${ws}int vx;${ws}vA ?& ?operator ?=\\(vA const ?&\\);${ws}vA\\(vA const ?&\\);${ws}vA\\((void|)\\);$nl\}$nl$gdb_prompt $" {
361 # gcc 2.95.3 -gstabs+
362 # gcc 3.3.2 -gstabs+
363 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
364 pass "ptype class vA"
365 }
366 }
367
368 # With gcc 2, gdb prints the virtual base pointer.
369 # With gcc 3, gdb does not print the virtual base pointer.
370 # drow considers it a gdb bug if gdb prints the vbptr.
371
372 gdb_test_multiple "ptype class vB" "ptype class vB" {
373 -re "type = class vB : public virtual vA \{${ws}private:${ws}vA ?\\* ?_vb.2vA;${ws}public:${ws}int vb;${ws}int vx;$nl\}$nl$gdb_prompt $" {
374 # gcc 2.95.3 -gdwarf-2
375 # TODO: kfail this
376 fail "ptype class vB"
377 }
378 -re "type = class vB : public virtual vA \{${ws}public:${ws}int vb;${ws}int vx;$nl\}$nl$gdb_prompt $" {
379 # gcc 3.3.2 -gdwarf-2
380 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
381 pass "ptype class vB"
382 }
383 -re "type = class vB : public virtual vA \{${ws}private:${ws}vA ?\\* ?_vb.vA;${ws}public:${ws}int vb;${ws}int vx;${ws}vB ?& ?operator ?=\\(vB const ?&\\);${ws}vB\\(int, ?vB const ?&\\);${ws}vB\\(int\\);$nl\}$nl$gdb_prompt $" {
384 # gcc 2.95.3 -gstabs+
385 # See the hidden "in-charge" ctor parameter!
386 # TODO: kfail this
387 setup_xfail "*-*-*"
388 fail "ptype class vB (FIXME: non-portable virtual table constructs)"
389 }
390 -re "type = class vB : public virtual vA \{${ws}public:${ws}int vb;${ws}int vx;${ws}vB ?& ?operator ?=\\(vB const ?&\\);${ws}vB\\(vB const ?&\\);${ws}vB\\((void|)\\);$nl\}$nl$gdb_prompt $" {
391 # gcc 3.3.2 -gstabs+
392 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
393 pass "ptype class vB"
394 }
395 }
396
397 # Another class with a virtual base.
398
399 gdb_test_multiple "ptype class vC" "ptype class vC" {
400 -re "type = class vC : public virtual vA \{${ws}private:${ws}vA ?\\* ?_vb.2vA;${ws}public:${ws}int vc;${ws}int vx;$nl\}$nl$gdb_prompt $" {
401 # gcc 2.95.3 -gdwarf-2
402 # TODO: kfail
403 fail "ptype class vC"
404 }
405 -re "type = class vC : public virtual vA \{${ws}public:${ws}int vc;${ws}int vx;$nl\}$nl$gdb_prompt $" {
406 # gcc 3.3.2 -gdwarf-2
407 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
408 pass "ptype class vC"
409 }
410 -re "type = class vC : public virtual vA \{${ws}private:${ws}vA ?\\* ?_vb.vA;${ws}public:${ws}int vc;${ws}int vx;${ws}vC ?& ?operator ?=\\(vC const ?&\\);${ws}vC\\(int, ?vC const ?&\\);${ws}vC\\(int\\);$nl\}$nl$gdb_prompt $" {
411 # gcc 2.95.3 -gstabs+
412 # See the hidden "in-charge" ctor parameter!
413 # TODO: kfail
414 setup_xfail "*-*-*"
415 fail "ptype class vC (FIXME: non-portable virtual table constructs)"
416 }
417 -re "type = class vC : public virtual vA \{${ws}public:${ws}int vc;${ws}int vx;${ws}vC ?& ?operator ?=\\(vC const ?&\\);${ws}vC\\(vC const ?&\\);${ws}vC\\((void|)\\);$nl\}$nl$gdb_prompt $" {
418 # gcc 3.3.2 -gstabs+
419 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
420 pass "ptype class vC"
421 }
422 }
423
424 # The classic diamond inheritance.
425
426 gdb_test_multiple "ptype class vD" "ptype class vD" {
427 -re "type = class vD : public virtual vB, public virtual vC \{${ws}private:${ws}vC ?\\* ?_vb.2vC;${ws}vB ?\\* ?_vb.2vB;${ws}public:${ws}int vd;${ws}int vx;$nl\}$nl$gdb_prompt $" {
428 # gcc 2.95.3 -gdwarf-2
429 # TODO: kfail
430 fail "ptype class vD"
431 }
432 -re "type = class vD : public virtual vB, public virtual vC \{${ws}public:${ws}int vd;${ws}int vx;$nl\}$nl$gdb_prompt $" {
433 # gcc 3.3.2 -gdwarf-2
434 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
435 pass "ptype class vD"
436 }
437 -re "type = class vD : public virtual vB, public virtual vC \{${ws}private:${ws}vC ?\\* ?_vb.vC;${ws}vB ?\\* ?_vb.vB;${ws}public:${ws}int vd;${ws}int vx;${ws}vD ?& ?operator ?=\\(vD const ?&\\);${ws}vD\\(int, ?vD const ?&\\);${ws}vD\\(int\\);$nl\}$nl$gdb_prompt $" {
438 # gcc 2.95.3 -gstabs+
439 # See the hidden "in-charge" ctor parameter!
440 # TODO: kfail
441 setup_xfail "*-*-*"
442 fail "ptype class vD (FIXME: non-portable virtual table constructs)"
443 }
444 -re "type = class vD : public virtual vB, public virtual vC \{${ws}public:${ws}int vd;${ws}int vx;${ws}vD ?& ?operator ?=\\(vD const ?&\\);${ws}vD\\(vD const ?&\\);${ws}vD\\((void|)\\);$nl\}$nl$gdb_prompt $" {
445 # gcc 3.3.2 -gstabs+
446 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
447 pass "ptype class vD"
448 }
449 }
450
451 # One more case of virtual derivation.
452
453 gdb_test_multiple "ptype class vE" "ptype class vE" {
454 -re "type = class vE : public virtual vD \{${ws}private:${ws}vD ?\\* ?_vb.2vD;${ws}public:${ws}int ve;${ws}int vx;$nl\}$nl$gdb_prompt $" {
455 # gcc 2.95.3 -gdwarf-2
456 # TODO: kfail
457 fail "ptype class vE"
458 }
459 -re "type = class vE : public virtual vD \{${ws}public:${ws}int ve;${ws}int vx;$nl\}$nl$gdb_prompt $" {
460 # gcc 3.3.2 -gdwarf-2
461 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
462 pass "ptype class vE"
463 }
464 -re "type = class vE : public virtual vD \{${ws}private:${ws}vD ?\\* ?_vb.vD;${ws}public:${ws}int ve;${ws}int vx;${ws}vE ?& ?operator ?=\\(vE const ?&\\);${ws}vE\\(int, ?vE const ?&\\);${ws}vE\\(int\\);$nl\}$nl$gdb_prompt $" {
465 # gcc 2.95.3 -gstabs+
466 # See the hidden "in-charge" ctor parameter!
467 # TODO: kfail
468 setup_xfail "*-*-*"
469 fail "ptype class vE (FIXME: non-portable virtual table constructs)"
470 }
471 -re "type = class vE : public virtual vD \{${ws}public:${ws}int ve;${ws}int vx;${ws}vE ?& ?operator ?=\\(vE const ?&\\);${ws}vE\\(vE const ?&\\);${ws}vE\\((void|)\\);$nl\}$nl$gdb_prompt $" {
472 # gcc 3.3.2 -gstabs+
473 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
474 pass "ptype class vE"
475 }
476 }
477
478 # Another inheritance series.
479
480 gdb_test_multiple "ptype class Base1" "ptype class Base1" {
481 -re "type = class Base1 \{${ws}public:${ws}int x;${ws}Base1\\(int\\);$nl\}$nl$gdb_prompt $" {
482 # gcc 2.95.3 -gdwarf-2
483 # gcc 3.3.2 -gdwarf-2
484 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
485 pass "ptype class Base1"
486 }
487 -re "type = class Base1 \{${ws}public:${ws}int x;${ws}Base1 ?& ?operator ?=\\(Base1 const ?&\\);${ws}Base1\\(Base1 const ?&\\);${ws}Base1\\(int\\);$nl\}$nl$gdb_prompt $" {
488 # gcc 2.95.3 -gstabs+
489 # gcc 3.3.2 -gstabs+
490 pass "ptype class Base1"
491 }
492 -re "type = class Base1 \{${ws}public:${ws}int x;${ws}Base1\\(int\\);${ws}Base1 ?& ?operator ?=\\(Base1 const ?&\\);${ws}Base1\\(Base1 const ?&\\);$nl\}$nl$gdb_prompt $" {
493 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
494 pass "ptype class Base1"
495 }
496 }
497
498 # The second base class.
499
500 gdb_test_multiple "ptype class Foo" "ptype class Foo" {
501 -re "type = class Foo \{${ws}public:${ws}int x;${ws}int y;${ws}static int st;${ws}Foo\\(int, int\\);${ws}int operator ?!\\((void|)\\);${ws}operator int\\((void|)\\);${ws}int times\\(int\\);$nl\}$nl$gdb_prompt $" {
502 # gcc 2.95.3 -gdwarf-2
503 # gcc 3.3.2 -gdwarf-2
504 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
505 pass "ptype class Foo"
506 }
507 -re "type = class Foo \{${ws}public:${ws}int x;${ws}int y;${ws}static int st;${ws}Foo ?& ?operator ?=\\(Foo const ?&\\);${ws}Foo\\(Foo const ?&\\);${ws}Foo\\(int, int\\);${ws}int operator ?!\\((void|)\\);${ws}int operator int\\((void|)\\);${ws}int times\\(int\\);$nl\}$nl$gdb_prompt $" {
508 # gcc 2.95.3 -gstabs+
509 # TODO: "int operator int()" is a bug
510 # kfail "gdb/1497" "ptype class Foo"
511 pass "ptype class Foo"
512 }
513 -re "type = class Foo \{${ws}public:${ws}int x;${ws}int y;${ws}static int st;${ws}Foo ?& ?operator ?=\\(Foo const ?&\\);${ws}Foo\\(Foo const ?&\\);${ws}Foo\\(int, int\\);${ws}int operator ?!\\((void|)\\);${ws}operator int\\((void|)\\);${ws}int times\\(int\\);$nl\}$nl$gdb_prompt $" {
514 # gcc 3.3.2 -gstabs+
515 pass "ptype class Foo"
516 }
517 -re "type = class Foo \{${ws}public:${ws}int x;${ws}int y;${ws}static int st;${ws}Foo\\(int, int\\);${ws}int operator ?!\\((void|)\\);${ws}operator int\\((void|)\\);${ws}int times\\(int\\);${ws}Foo ?& ?operator ?=\\(Foo const ?&\\);${ws}Foo\\(Foo const ?&\\);$nl\}$nl$gdb_prompt $" {
518 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
519 pass "ptype class Foo"
520 }
521 }
522
523 # A multiple inheritance derived class.
524
525 gdb_test_multiple "ptype class Bar" "ptype class Bar" {
526 -re "type = class Bar : public Base1, public Foo \{${ws}public:${ws}int z;${ws}Bar\\(int, int, int\\);$nl\}$nl$gdb_prompt $" {
527 # gcc 2.95.3 -gdwarf-2
528 # gcc 3.3.2 -gdwarf-2
529 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
530 pass "ptype class Bar"
531 }
532 -re "type = class Bar : public Base1, public Foo \{${ws}public:${ws}int z;${ws}Bar ?& ?operator ?=\\(Bar const ?&\\);${ws}Bar\\(Bar const ?&\\);${ws}Bar\\(int, int, int\\);$nl\}$nl$gdb_prompt $" {
533 # gcc 2.95.3 -gstabs+
534 # gcc 3.3.2 -gstabs+
535 pass "ptype class Bar"
536 }
537 -re "type = class Bar : public Base1, public Foo \{${ws}public:${ws}int z;${ws}Bar\\(int, int, int\\);${ws}Bar ?& ?operator ?=\\(Bar const ?&\\);${ws}Bar\\(Bar const ?&\\);$nl\}$nl$gdb_prompt $" {
538 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
539 pass "ptype class Bar"
540 }
541 }
542 }
543
544 # Test simple access to class members.
545 # TODO: these test names are gross!
546 # Just let the test name default.
547
548 proc test_non_inherited_member_access {} {
549 global gdb_prompt
550
551 # Print non-inherited members of g_A.
552 gdb_test "print g_A.a" ".* = 1" "g_A.a incorrect"
553 gdb_test "print g_A.x" ".* = 2" "g_A.x incorrect"
554
555 # Print non-inherited members of g_B.
556 gdb_test "print g_B.b" ".* = 5" "g_B.b incorrect"
557 gdb_test "print g_B.x" ".* = 6" "g_B.x incorrect"
558
559 # Print non-inherited members of g_C.
560 gdb_test "print g_C.c" ".* = 9" "g_C.c incorrect"
561 gdb_test "print g_C.x" ".* = 10" "g_C.x incorrect"
562
563 # Print non-inherited members of g_D.
564 gdb_test "print g_D.d" ".* = 19" "g_D.d incorrect"
565 gdb_test "print g_D.x" ".* = 20" "g_D.x incorrect"
566
567 # Print non-inherited members of g_E.
568 gdb_test "print g_E.e" ".* = 31" "g_E.e incorrect"
569 gdb_test "print g_E.x" ".* = 32" "g_E.x incorrect"
570 }
571
572 # Test access to members of other classes.
573 # gdb should refuse to print them.
574 # (I feel old -- I remember when this was legal in C -- chastain).
575 # TODO: Again, change the silly test names.
576
577 proc test_wrong_class_members {} {
578 global gdb_prompt
579
580 gdb_test "print g_A.b" "There is no member( or method|) named b." "print g_A.b should be error"
581 gdb_test "print g_B.c" "There is no member( or method|) named c." "print g_B.c should be error"
582 gdb_test "print g_B.d" "There is no member( or method|) named d." "print g_B.d should be error"
583 gdb_test "print g_C.b" "There is no member( or method|) named b." "print g_C.b should be error"
584 gdb_test "print g_C.d" "There is no member( or method|) named d." "print g_C.d should be error"
585 gdb_test "print g_D.e" "There is no member( or method|) named e." "print g_D.e should be error"
586 }
587
588 # Test access to names that are not members of any class.
589 # TODO: test names again.
590
591 proc test_nonexistent_members {} {
592 global gdb_prompt
593
594 gdb_test "print g_A.y" "There is no member( or method|) named y." "print g_A.y should be error"
595 gdb_test "print g_B.z" "There is no member( or method|) named z." "print g_B.z should be error"
596 gdb_test "print g_C.q" "There is no member( or method|) named q." "print g_C.q should be error"
597 gdb_test "print g_D.p" "There is no member( or method|) named p." "print g_D.p should be error"
598 }
599
600 # Call a method that expects a base class parameter with base, inherited,
601 # and unrelated class arguments.
602
603 proc test_method_param_class {} {
604 gdb_test "call class_param.Aptr_a (&g_A)" ".* = 1" "base class param->a"
605 gdb_test "call class_param.Aptr_x (&g_A)" ".* = 2" "base class param->x"
606 gdb_test "call class_param.Aptr_a (&g_B)" ".* = 3" "inherited class param->a"
607 gdb_test "call class_param.Aptr_x (&g_B)" ".* = 4" "inherited class param->x"
608 gdb_test "call class_param.Aref_a (g_A)" ".* = 1" "base class (&param)->a"
609 gdb_test "call class_param.Aref_x (g_A)" ".* = 2" "base class (&param)->x"
610 gdb_test "call class_param.Aref_a (g_B)" ".* = 3" "inherited class (&param)->a"
611 gdb_test "call class_param.Aref_x (g_B)" ".* = 4" "inherited class (&param)->x"
612 gdb_test "call class_param.Aval_a (g_A)" ".* = 1" "base class param.a"
613 gdb_test "call class_param.Aval_x (g_A)" ".* = 2" "base class param.x"
614 gdb_test "call class_param.Aval_a (g_B)" ".* = 3" "inherited class param.a"
615 gdb_test "call class_param.Aval_x (g_B)" ".* = 4" "inherited class param.x"
616
617 gdb_test "call class_param.Aptr_a (&foo)" "Cannot resolve .*" "unrelated class *param"
618 gdb_test "call class_param.Aref_a (foo)" "Cannot resolve .*" "unrelated class &param"
619 gdb_test "call class_param.Aval_a (foo)" "Cannot resolve .*" "unrelated class param"
620 }
621
622 # Examine a class with an enum field.
623
624 proc test_enums {} {
625 global gdb_prompt
626 global nl
627 global ws
628
629 # print the object
630
631 gdb_test "print obj_with_enum" \
632 "\\$\[0-9\]+ = \{priv_enum = red, x = 0\}" \
633 "print obj_with_enum (1)"
634
635 # advance one line
636
637 gdb_test "next" ""
638
639 # TODO: with gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2,
640 # gdb says that obj_with_enum is out of scope here and the
641 # tests after this FAIL. This needs investigation.
642 # -- chastain 2003-12-30
643
644 # print the object again
645
646 gdb_test "print obj_with_enum" \
647 "\\$\[0-9\]+ = \{priv_enum = green, x = 0\}" \
648 "print obj_with_enum (2)"
649
650 # print the enum member
651
652 gdb_test "print obj_with_enum.priv_enum" "\\$\[0-9\]+ = green"
653
654 # ptype on the enum member
655
656 gdb_test_multiple "ptype obj_with_enum.priv_enum" "ptype obj_with_enum.priv_enum" {
657 -re "type = enum ClassWithEnum::PrivEnum \{ ?red, green, blue, yellow = 42 ?\}$nl$gdb_prompt $" {
658 pass "ptype obj_with_enum.priv_enum"
659 }
660 -re "type = enum PrivEnum \{ ?red, green, blue, yellow = 42 ?\}$nl$gdb_prompt $" {
661 # gcc 2.95.3 -gdwarf-2
662 # gcc 3.3.2 -gdwarf-2
663 pass "ptype obj_with_enum.priv_enum"
664 }
665 -re "type = enum \{ ?red, green, blue, yellow = 42 ?\}$nl$gdb_prompt $" {
666 # This case case is a little dubious, but it's not clear what
667 # ought to be required of a ptype on a private enum...
668 # -sts 19990324
669 #
670 # It bugs me that this happens with gcc 3.
671 # -- chastain 2003-12-30
672 #
673 # gcc 2.95.3 -gstabs+
674 # gcc 3.3.2 -gstabs+
675 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
676 pass "ptype obj_with_enum.priv_enum"
677 }
678 }
679
680 # ptype on the object
681 gdb_test_multiple "ptype obj_with_enum" "ptype obj_with_enum" {
682 -re "type = class ClassWithEnum \{${ws}public:${ws}(enum |)ClassWithEnum::PrivEnum priv_enum;${ws}int x;$nl\}$nl$gdb_prompt $" {
683 pass "ptype obj_with_enum"
684 }
685 -re "type = class ClassWithEnum \{${ws}public:${ws}(enum |)PrivEnum priv_enum;${ws}int x;$nl\}$nl$gdb_prompt $" {
686 # NOTE: carlton/2003-02-28: One could certainly argue that
687 # this output is acceptable: PrivEnum is a member of
688 # ClassWithEnum, so there's no need to explicitly qualify
689 # its name with "ClassWithEnum::". The truth, though, is
690 # that GDB is simply forgetting that PrivEnum is a member
691 # of ClassWithEnum, so we do that output for a bad reason
692 # instead of a good reason. Under stabs, we probably
693 # can't get this right; under DWARF-2, we can.
694 #
695 # gcc 2.95.3 -gdwarf-2
696 # gcc 3.3.2 -gdwarf-2
697 kfail "gdb/57" "ptype obj_with_enum"
698 }
699 -re "type = class ClassWithEnum \{${ws}public:${ws}(enum |)PrivEnum priv_enum;${ws}int x;${ws}ClassWithEnum ?& ?operator ?=\\(ClassWithEnum const ?&\\);${ws}ClassWithEnum\\(ClassWithEnum const ?&\\);${ws}ClassWithEnum\\((void|)\\);$nl\}$nl$gdb_prompt $" {
700 # gcc 2.95.3 -gstabs+
701 kfail "gdb/57" "ptype obj_with_enum"
702 }
703 -re "type = class ClassWithEnum \{${ws}public:${ws}(enum |)ClassWithEnum::PrivEnum priv_enum;${ws}int x;${ws}ClassWithEnum ?& ?operator ?=\\(ClassWithEnum const ?&\\);${ws}ClassWithEnum\\(ClassWithEnum const ?&\\);${ws}ClassWithEnum\\((void|)\\);$nl\}$nl$gdb_prompt $" {
704 # I think this is a PASS, but only carlton knows for sure.
705 # -- chastain 2003-12-30
706 #
707 # gcc 3.3.2 -gstabs+
708 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
709 fail "ptype obj_with_enum"
710 }
711 }
712
713 # I'll do this test two different ways, because of a parser bug.
714 # See PR gdb/826.
715
716 gdb_test_multiple "print (ClassWithEnum::PrivEnum) 42" "print (ClassWithEnum::PrivEnum) 42" {
717 -re "\\$\[0-9\]+ = yellow$nl$gdb_prompt $" {
718 pass "print (ClassWithEnum::PrivEnum) 42"
719 }
720 -re "A (parse|syntax) error in expression, near `42'.$nl$gdb_prompt $" {
721 # "parse error" is bison 1.35.
722 # "syntax error" is bison 1.875.
723 kfail "gdb/826" "print (ClassWithEnum::PrivEnum) 42"
724 }
725 }
726
727 gdb_test_multiple "print ('ClassWithEnum::PrivEnum') 42" "print ('ClassWithEnum::PrivEnum') 42" {
728 -re "\\$\[0-9\]+ = yellow$nl$gdb_prompt $" {
729 # gcc 3.3.2 -gstabs+
730 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
731 pass "print ('ClassWithEnum::PrivEnum') 42"
732 }
733 -re "No symbol \"ClassWithEnum::PrivEnum\" in current context.$nl$gdb_prompt $" {
734 # gcc 2.95.3 -gdwarf-2
735 # gcc 3.3.2 -gdwarf-2
736 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
737 # gcc 2.95.3 -gstabs+
738 kfail "gdb/57" "print ('ClassWithEnum::PrivEnum') 42"
739 }
740 }
741 }
742
743 # Pointers to class members
744
745 proc test_pointers_to_class_members {} {
746 global gdb_prompt
747
748 gdb_test "print Bar::z" "\\$\[0-9\]+ = \\(int ?\\( ?Bar::& ?\\) ?\\) ?Bar::z"
749 gdb_test "print &Foo::x" "\\$\[0-9\]+ = \\(int ?\\( ?Foo::\\* ?\\) ?\\) ?&Foo::x"
750 gdb_test "print (int)&Foo::x" "\\$\[0-9\]+ = 0"
751 gdb_test "print (int)&Bar::y == 2*sizeof(int)" "\\$\[0-9\]+ = true"
752
753 # TODO: this is a bogus test. It's looking at a variable that
754 # has not even been declared yet, so it's accessing random junk
755 # on the stack and comparing that it's NOT equal to a specific
756 # value. It's been like this since gdb 4.10 in 1993!
757 # -- chastain 2004-01-01
758 gdb_test "print (int)pmi == sizeof(int)" ".* = false"
759 }
760
761 # Test static members.
762
763 proc test_static_members {} {
764 global gdb_prompt
765 global hex
766
767 gdb_test "print Foo::st" "\\$\[0-9\]+ = 100"
768 gdb_test "set foo.st = 200" "" ""
769 gdb_test "print bar.st" "\\$\[0-9\]+ = 200"
770 gdb_test "print &foo.st" "\\$\[0-9\]+ = \\(int ?\\*\\) $hex"
771 gdb_test "print &Bar::st" "\\$\[0-9\]+ = \\(int ?\\*\\) $hex"
772 gdb_test "print *\$" "\\$\[0-9\]+ = 200"
773
774 gdb_test "set print static-members off" ""
775 gdb_test "print csi" \
776 "{x = 10, y = 20}" \
777 "print csi without static members"
778 gdb_test "print cnsi" \
779 "{x = 30, y = 40}" \
780 "print cnsi without static members"
781
782 gdb_test "set print static-members on" ""
783 gdb_test "print csi" \
784 "{x = 10, y = 20, static null = {x = 0, y = 0, static null = <same as static member of an already seen type>}}" \
785 "print csi with static members"
786 gdb_test "print cnsi" \
787 "{x = 30, y = 40, static null = {x = 0, y = 0, static null = <same as static member of an already seen type>, static yy = {z = 5, static xx = {x = 1, y = 2, static null = <same as static member of an already seen type>, static yy = <same as static member of an already seen type>}}}, static yy = <same as static member of an already seen type>}" \
788 "print cnsi with static members"
789 }
790
791 proc do_tests {} {
792 global prms_id
793 global bug_id
794 global subdir
795 global objdir
796 global srcdir
797 global binfile
798 global gdb_prompt
799 global nl
800
801 set prms_id 0
802 set bug_id 0
803
804 # Start with a fresh gdb.
805
806 gdb_exit
807 gdb_start
808 gdb_reinitialize_dir $srcdir/$subdir
809 gdb_load $binfile
810
811 gdb_test "set language c++" "" ""
812 gdb_test "set width 0" "" ""
813
814 if ![runto_main ] then {
815 perror "couldn't run to breakpoint"
816 return
817 }
818
819 gdb_breakpoint inheritance2
820 gdb_test "continue" ".*Breakpoint .* inheritance2.*" ""
821
822 test_ptype_class_objects
823 test_non_inherited_member_access
824 test_wrong_class_members
825 test_nonexistent_members
826 test_method_param_class
827
828 gdb_breakpoint enums2
829 gdb_test "continue" ".*Breakpoint .* enums2.*" "continue to enums2(\\(\\)|)"
830 gdb_test "finish" "" ""
831 test_enums
832
833 gdb_test "finish" "" ""
834 test_pointers_to_class_members
835 test_static_members
836
837 # Now some random tests that were just thrown in here.
838
839 gdb_breakpoint marker_reg1
840 gdb_test "continue" ".*Breakpoint .* marker_reg1.*" ""
841 gdb_test "finish" "Run till exit from.*" "finish from marker_reg1"
842
843 # This class is so small that an instance of it can fit in a register.
844 # When gdb tries to call a method, it gets embarrassed about taking
845 # the address of a register.
846 #
847 # TODO: I think that message should be a PASS, not an XFAIL.
848 # gdb prints an informative message and declines to do something
849 # impossible.
850 #
851 # The method call actually succeeds if the compiler allocates very
852 # small classes in memory instead of registers. So this test does
853 # not tell us anything interesting if the call succeeds.
854 #
855 # -- chastain 2003-12-31
856 gdb_test_multiple "print v.method ()" "calling method for small class" {
857 -re "\\$\[0-9\]+ = 82$nl$gdb_prompt $" {
858 # gcc 3.3.2 -gdwarf-2
859 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
860 # gcc 3.3.2 -gstabs+
861 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
862 pass "calling method for small class"
863 }
864 -re "Address requested for identifier \"v\" which is in register .*$nl$gdb_prompt $" {
865 # gcc 2.95.3 -gdwarf-2
866 # gcc 2.95.3 -gstabs+
867 setup_xfail "*-*-*" 2972
868 fail "calling method for small class"
869 }
870 }
871
872 # This is a random v2 demangling test.
873 # This is redundant with existing tests in demangle.exp.
874 # TODO: Just remove this.
875 gdb_test "maint demangle inheritance1__Fv" "inheritance1\\(void\\)" "demangle"
876 }
877
878 do_tests
This page took 0.053293 seconds and 5 git commands to generate.