* breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / inherit.exp
CommitLineData
ebac27b4 1# Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
4c38e0a4 2# 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
c906108c 7# (at your option) any later version.
e22f8b7c 8#
c906108c
SS
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.
e22f8b7c 13#
c906108c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 16
c906108c 17# This file was written by Fred Fish. (fnf@cygnus.com)
ebac27b4 18# And rewritten by Michael Chastain. (mec.gnu@mindspring.com)
c906108c 19
ebac27b4
MC
20set ws "\[\r\n\t \]+"
21set nl "\[\r\n\]+"
22set vhn "\\$\[0-9\]+"
c2d11a7d 23
c906108c 24if $tracelevel then {
ebac27b4 25 strace $tracelevel
c906108c
SS
26}
27
d4f3574e
SS
28if { [skip_cplus_tests] } { continue }
29
25808999
MC
30load_lib "cp-support.exp"
31
c906108c
SS
32set testfile "inherit"
33set srcfile misc.cc
34set binfile ${objdir}/${subdir}/${testfile}
35
c906108c 36if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
37 untested inherit.exp
38 return -1
c906108c
SS
39}
40
c906108c 41# Single inheritance, print type definitions.
c906108c 42
ebac27b4 43proc test_ptype_si { } {
c906108c
SS
44 global gdb_prompt
45 global ws
46 global nl
47
25808999 48 # A simple class.
c906108c 49
25808999
MC
50 cp_test_ptype_class \
51 "ptype A" "ptype A (FIXME)" "class" "A" \
52 {
53 { field public "int a;" }
54 { field public "int x;" }
ebac27b4 55 }
25808999
MC
56 cp_test_ptype_class "ptype class A" "ptype class A (FIXME)" "class" "A" ibid
57 cp_test_ptype_class "ptype g_A" "ptype g_A (FIXME)" "class" "A" ibid
c906108c 58
25808999 59 # A derived class.
c906108c 60
25808999
MC
61 cp_test_ptype_class \
62 "ptype B" "" "class" "B" \
63 {
64 { base "public A" }
65 { field public "int b;" }
66 { field public "int x;" }
ebac27b4 67 }
25808999
MC
68 cp_test_ptype_class "ptype class B" "" "class" "B" ibid
69 cp_test_ptype_class "ptype g_B" "" "class" "B" ibid
c906108c 70
25808999 71 # Another derived class.
c906108c 72
25808999
MC
73 cp_test_ptype_class \
74 "ptype C" "" "class" "C" \
75 {
76 { base "public A" }
77 { field public "int c;" }
78 { field public "int x;" }
ebac27b4 79 }
25808999
MC
80 cp_test_ptype_class "ptype class C" "" "class" "C" ibid
81 cp_test_ptype_class "ptype g_C" "" "class" "C" ibid
c906108c 82
25808999
MC
83 # A structure with no tag.
84 # TODO: move this mess into a separate file, and re-specify
85 # which results are PASS, KFAIL, XFAIL, and FAIL.
ebac27b4
MC
86
87 set re_tag "tagless_struct"
88 set XX_tag "\\._1"
89 set re_class "(class $re_tag \{${ws}public:|class \{${ws}public:|struct $re_tag \{|struct \{)"
90 set XX_class "(class $XX_tag \{${ws}public:|struct $XX_tag \{)"
91 set re_fields "int one;${ws}int two;"
92 set re_synth_gcc_23 "$re_tag & operator=\\($re_tag const ?&\\);${ws}$re_tag\\($re_tag const ?&\\);${ws}$re_tag\\((void|)\\);"
93 set XX_synth_gcc_23 "($re_tag|$XX_tag) & operator=\\($XX_tag const ?&\\);${ws}$XX_tag\\($XX_tag const ?&\\);${ws}$XX_tag\\((void|)\\);"
94
95 set name "ptype tagless struct"
96 gdb_test_multiple "ptype tagless_struct" $name {
97 -re "type = $XX_class${ws}$re_fields$nl\}$nl$gdb_prompt $" {
98 # gcc 2.95.3 -gdwarf-2
9366563b 99 pass "$name"
c906108c 100 }
ebac27b4
MC
101 -re "type = $re_class${ws}$re_fields${ws}$XX_synth_gcc_23$nl\}$nl$gdb_prompt $" {
102 # gcc 2.95.3 -gstabs+
9366563b 103 pass "$name"
c906108c 104 }
ebac27b4 105 -re "type = $re_class${ws}$re_fields$nl\}$nl$gdb_prompt $" {
9366563b
MC
106 # gcc 3.3.4 -gdwarf-2
107 # gcc 3.4.1 -gdwarf-2
108 # gcc HEAD 2004-07-31 -gdwarf-2
109 # gcc HEAD 2004-07-31 -gstabs+
110 pass "$name"
c906108c 111 }
ebac27b4 112 -re "type = $re_class${ws}$re_fields${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
9366563b
MC
113 # gcc 3.3.4 -gstabs+
114 # gcc 3.4.1 -gstabs+
ebac27b4 115 pass "$name"
c906108c
SS
116 }
117 }
118
ebac27b4
MC
119 set name "ptype variable of type tagless struct"
120 gdb_test_multiple "ptype v_tagless" $name {
121 -re "type = $XX_class${ws}$re_fields$nl\}$nl$gdb_prompt $" {
122 # gcc 2.95.3 -gdwarf-2
9366563b 123 pass "$name"
3e36a0f4 124 }
ebac27b4
MC
125 -re "type = $re_class${ws}$re_fields${ws}$XX_synth_gcc_23$nl\}$nl$gdb_prompt $" {
126 # gcc 2.95.3 -gstabs+
9366563b 127 pass "$name"
c906108c 128 }
ebac27b4 129 -re "type = $re_class${ws}$re_fields$nl\}$nl$gdb_prompt $" {
9366563b
MC
130 # gcc 3.3.4 -gdwarf-2
131 # gcc 3.4.1 -gdwarf-2
132 # gcc HEAD 2004-07-31 -gdwarf-2
133 # gcc HEAD 2004-07-31 -gstabs+
134 pass "$name"
c906108c 135 }
ebac27b4 136 -re "type = $re_class${ws}$re_fields${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
9366563b
MC
137 # gcc 3.3.4 -gstabs+
138 # gcc 3.4.1 -gstabs+
ebac27b4 139 pass "$name"
c906108c
SS
140 }
141 }
142}
143
ebac27b4 144# Multiple inheritance, print type definitions.
c906108c 145
ebac27b4 146proc test_ptype_mi { } {
ebac27b4 147
25808999 148 # A class with two bases.
ebac27b4 149
25808999
MC
150 cp_test_ptype_class \
151 "ptype D" "" "class" "D" \
152 {
153 { base "public B" }
154 { base "public C" }
155 { field public "int d;" }
156 { field public "int x;" }
c906108c 157 }
25808999
MC
158 cp_test_ptype_class "ptype class D" "" "class" "D" ibid
159 cp_test_ptype_class "ptype g_D" "" "class" "D" ibid
ebac27b4 160
25808999 161 # A class derived from the previous class.
ebac27b4 162
25808999
MC
163 cp_test_ptype_class \
164 "ptype E" "" "class" "E" \
165 {
166 { base "public D" }
167 { field public "int e;" }
168 { field public "int x;" }
3e36a0f4 169 }
25808999
MC
170 cp_test_ptype_class "ptype class E" "" "class" "E" ibid
171 cp_test_ptype_class "ptype g_E" "" "class" "E" ibid
c906108c
SS
172}
173
ebac27b4 174# Single virtual inheritance, print type definitions.
c906108c 175
ebac27b4 176proc test_ptype_vi { } {
c906108c 177
25808999 178 # class vA
c906108c 179
25808999
MC
180 cp_test_ptype_class \
181 "ptype vA" "" "class" "vA" \
182 {
183 { field public "int va;" }
184 { field public "int vx;" }
ebac27b4 185 }
25808999
MC
186 cp_test_ptype_class "ptype class vA" "" "class" "vA" ibid
187 cp_test_ptype_class "ptype g_vA" "" "class" "vA" ibid
c906108c 188
25808999 189 # class vB
c906108c 190
25808999
MC
191 cp_test_ptype_class \
192 "ptype vB" "" "class" "vB" \
193 {
194 { base "public virtual vA" }
195 { vbase "vA" }
196 { field public "int vb;" }
197 { field public "int vx;" }
ebac27b4 198 }
25808999
MC
199 cp_test_ptype_class "ptype class vB" "" "class" "vB" ibid
200 cp_test_ptype_class "ptype g_vB" "" "class" "vB" ibid
c906108c 201
25808999 202 # class vC
c906108c 203
25808999
MC
204 cp_test_ptype_class \
205 "ptype vC" "" "class" "vC" \
206 {
207 { base "public virtual vA" }
208 { vbase "vA" }
209 { field public "int vc;" }
210 { field public "int vx;" }
ebac27b4 211 }
25808999
MC
212 cp_test_ptype_class "ptype class vC" "" "class" "vC" ibid
213 cp_test_ptype_class "ptype g_vC" "" "class" "vC" ibid
c906108c 214
ebac27b4 215}
c906108c 216
ebac27b4 217# Multiple virtual inheritance, print type definitions.
c906108c 218
ebac27b4 219proc test_ptype_mvi { } {
c906108c 220
25808999 221 # class vD
c906108c 222
25808999
MC
223 cp_test_ptype_class \
224 "ptype vD" "" "class" "vD" \
225 {
226 { base "public virtual vB" }
227 { base "public virtual vC" }
228 { vbase "vC" }
229 { vbase "vB" }
230 { field public "int vd;" }
231 { field public "int vx;" }
ebac27b4 232 }
25808999
MC
233 cp_test_ptype_class "ptype class vD" "" "class" "vD" ibid
234 cp_test_ptype_class "ptype g_vD" "" "class" "vD" ibid
c906108c 235
25808999 236 # class vE
c906108c 237
25808999
MC
238 cp_test_ptype_class \
239 "ptype vE" "" "class" "vE" \
240 {
241 { base "public virtual vD" }
242 { vbase "vD" }
243 { field public "int ve;" }
244 { field public "int vx;" }
ebac27b4 245 }
25808999
MC
246 cp_test_ptype_class "ptype class vE" "" "class" "vE" ibid
247 cp_test_ptype_class "ptype g_vE" "" "class" "vE" ibid
c906108c 248
c906108c
SS
249}
250
ebac27b4 251# Single inheritance, print individual members.
c906108c 252
ebac27b4
MC
253proc test_print_si_members { } {
254 global vhn
c906108c 255
ebac27b4
MC
256 # Print all members of g_A using fully qualified form.
257 gdb_test "print g_A.A::a" "$vhn = 1"
258 gdb_test "print g_A.A::x" "$vhn = 2"
c906108c 259
ebac27b4
MC
260 # Print members of g_A using nonambiguous compact form.
261 gdb_test "print g_A.a" "$vhn = 1"
262 gdb_test "print g_A.x" "$vhn = 2"
c906108c 263
ebac27b4
MC
264 # Print all members of g_B using fully qualified form.
265 gdb_test "print g_B.A::a" "$vhn = 3"
266 gdb_test "print g_B.A::x" "$vhn = 4"
267 gdb_test "print g_B.B::b" "$vhn = 5"
268 gdb_test "print g_B.B::x" "$vhn = 6"
c906108c 269
ebac27b4
MC
270 # Print members of g_B using nonambiguous compact form.
271 gdb_test "print g_B.a" "$vhn = 3"
272 gdb_test "print g_B.b" "$vhn = 5"
273 gdb_test "print g_B.x" "$vhn = 6"
c906108c 274
ebac27b4
MC
275 # Print all members of g_C using fully qualified form.
276 gdb_test "print g_C.A::a" "$vhn = 7"
277 gdb_test "print g_C.A::x" "$vhn = 8"
278 gdb_test "print g_C.C::c" "$vhn = 9"
279 gdb_test "print g_C.C::x" "$vhn = 10"
c906108c 280
ebac27b4
MC
281 # Print members of g_C using nonambiguous compact form.
282 gdb_test "print g_C.a" "$vhn = 7"
283 gdb_test "print g_C.c" "$vhn = 9"
284 gdb_test "print g_C.x" "$vhn = 10"
c906108c
SS
285}
286
ebac27b4 287# Single inheritance, print complete classes.
c906108c 288
ebac27b4
MC
289proc test_print_si_classes { } {
290 global vhn
c906108c 291
ebac27b4
MC
292 # Print all members of g_A, g_B, g_C.
293 gdb_test "print g_A" "$vhn = \{a = 1, x = 2\}"
294 gdb_test "print g_B" "$vhn = \{<(class A|A)> = \{a = 3, x = 4\}, b = 5, x = 6\}"
295 gdb_test "print g_C" "$vhn = \{<(class A|A)> = \{a = 7, x = 8\}, c = 9, x = 10\}"
c906108c
SS
296}
297
ebac27b4 298# Multiple inheritance, print individual members.
c906108c 299
ebac27b4 300proc test_print_mi_members {} {
c906108c 301 global gdb_prompt
c906108c 302 global nl
ebac27b4 303 global vhn
c906108c 304
ebac27b4
MC
305 # Print all members of g_A.
306 gdb_test "print g_A.A::a" "$vhn = 1"
307 gdb_test "print g_A.A::x" "$vhn = 2"
c906108c 308
ebac27b4
MC
309 # Print all members of g_B.
310 gdb_test "print g_B.A::a" "$vhn = 3"
311 gdb_test "print g_B.A::x" "$vhn = 4"
312 gdb_test "print g_B.B::b" "$vhn = 5"
313 gdb_test "print g_B.B::x" "$vhn = 6"
c906108c 314
ebac27b4
MC
315 # Print all members of g_C.
316 gdb_test "print g_C.A::a" "$vhn = 7"
317 gdb_test "print g_C.A::x" "$vhn = 8"
318 gdb_test "print g_C.C::c" "$vhn = 9"
319 gdb_test "print g_C.C::x" "$vhn = 10"
c906108c 320
ebac27b4
MC
321 # Print all members of g_D.
322 #
323 # g_D.A::a and g_D.A::x are ambiguous member accesses, and gdb
324 # should detect these. There are no ways to PASS these tests
325 # because I don't know what the gdb message will be. -- chastain
326 # 2004-01-27.
327
328 set name "print g_D.A::a"
329 gdb_test_multiple "print g_D.A::a" $name {
330 -re "$vhn = (15|11)$nl$gdb_prompt $" {
331 kfail "gdb/68" "print g_D.A::a"
c906108c 332 }
c906108c
SS
333 }
334
ebac27b4
MC
335 set name "print g_D.A::x"
336 gdb_test_multiple "print g_D.A::x" $name {
337 -re "$vhn = (16|12)$nl$gdb_prompt $" {
338 kfail "gdb/68" "print g_D.A::x"
339 }
340 }
c906108c 341
ebac27b4
MC
342 gdb_test "print g_D.B::b" "$vhn = 13"
343 gdb_test "print g_D.B::x" "$vhn = 14"
344 gdb_test "print g_D.C::c" "$vhn = 17"
345 gdb_test "print g_D.C::x" "$vhn = 18"
346 gdb_test "print g_D.D::d" "$vhn = 19"
347 gdb_test "print g_D.D::x" "$vhn = 20"
c906108c 348
ebac27b4
MC
349 # Print all members of g_E.
350 # g_E.A::a and g_E.A::x are ambiguous.
c906108c 351
ebac27b4
MC
352 set name "print g_E.A::a"
353 gdb_test_multiple "print g_E.A::a" $name {
354 -re "$vhn = (21|25)$nl$gdb_prompt $" {
355 kfail "gdb/68" "print g_E.A::a"
356 }
357 }
c906108c 358
ebac27b4
MC
359 set name "print g_E.A::x"
360 gdb_test_multiple "print g_E.A::x" $name {
361 -re "$vhn = (26|22)$nl$gdb_prompt $" {
362 kfail "gdb/68" "print g_E.A::x"
363 }
364 }
c906108c 365
ebac27b4
MC
366 gdb_test "print g_E.B::b" "$vhn = 23"
367 gdb_test "print g_E.B::x" "$vhn = 24"
368 gdb_test "print g_E.C::c" "$vhn = 27"
369 gdb_test "print g_E.C::x" "$vhn = 28"
370 gdb_test "print g_E.D::d" "$vhn = 29"
371 gdb_test "print g_E.D::x" "$vhn = 30"
372 gdb_test "print g_E.E::e" "$vhn = 31"
373 gdb_test "print g_E.E::x" "$vhn = 32"
374}
c906108c 375
9733fc94
DJ
376# Multiple inheritance, print individual member types.
377
378proc test_print_mi_member_types {} {
379 global gdb_prompt
380 global nl
381 global vhn
382
383 # Print the types of some members of g_D without qualifying them.
384 gdb_test "ptype g_D.b" "type = int"
385 gdb_test "ptype g_D.c" "type = int"
386 gdb_test "ptype g_D.d" "type = int"
387
388 # Print the types of qualified members; none of these tests pass today.
389
390 # Print all members of g_A.
9733fc94 391 gdb_test "ptype g_A.A::a" "type = int"
9733fc94
DJ
392 gdb_test "ptype g_A.A::x" "type = int"
393
394 # Print all members of g_B.
9733fc94 395 gdb_test "ptype g_B.A::a" "type = int"
9733fc94 396 gdb_test "ptype g_B.A::x" "type = int"
9733fc94 397 gdb_test "ptype g_B.B::b" "type = int"
9733fc94
DJ
398 gdb_test "ptype g_B.B::x" "type = int"
399
400 # Print all members of g_C.
9733fc94 401 gdb_test "ptype g_C.A::a" "type = int"
9733fc94 402 gdb_test "ptype g_C.A::x" "type = int"
9733fc94 403 gdb_test "ptype g_C.C::c" "type = int"
9733fc94
DJ
404 gdb_test "ptype g_C.C::x" "type = int"
405
406 # Print all members of g_D.
407 #
408 # g_D.A::a and g_D.A::x are ambiguous member accesses, and gdb
409 # should detect these. There are no ways to PASS these tests
410 # because I don't know what the gdb message will be. -- chastain
411 # 2004-01-27.
412
413 set name "ptype g_D.A::a"
414 gdb_test_multiple "ptype g_D.A::a" $name {
9733fc94
DJ
415 -re "type = int$nl$gdb_prompt $" {
416 kfail "gdb/68" "ptype g_D.A::a"
417 }
418 }
419
420 set name "ptype g_D.A::x"
421 gdb_test_multiple "ptype g_D.A::x" $name {
9733fc94
DJ
422 -re "type = int$nl$gdb_prompt $" {
423 kfail "gdb/68" "ptype g_D.A::x"
424 }
425 }
426
9733fc94 427 gdb_test "ptype g_D.B::b" "type = int"
9733fc94 428 gdb_test "ptype g_D.B::x" "type = int"
9733fc94 429 gdb_test "ptype g_D.C::c" "type = int"
9733fc94 430 gdb_test "ptype g_D.C::x" "type = int"
9733fc94 431 gdb_test "ptype g_D.D::d" "type = int"
9733fc94
DJ
432 gdb_test "ptype g_D.D::x" "type = int"
433
434 # Print all members of g_E.
435 # g_E.A::a and g_E.A::x are ambiguous.
436
437 set name "ptype g_E.A::a"
438 gdb_test_multiple "ptype g_E.A::a" $name {
9733fc94
DJ
439 -re "type = int$nl$gdb_prompt $" {
440 kfail "gdb/68" "ptype g_E.A::a"
441 }
442 }
443
444 set name "ptype g_E.A::x"
445 gdb_test_multiple "ptype g_E.A::x" $name {
9733fc94
DJ
446 -re "type = int$nl$gdb_prompt $" {
447 kfail "gdb/68" "ptype g_E.A::x"
448 }
449 }
450
9733fc94 451 gdb_test "ptype g_E.B::b" "type = int"
9733fc94 452 gdb_test "ptype g_E.B::x" "type = int"
9733fc94 453 gdb_test "ptype g_E.C::c" "type = int"
9733fc94 454 gdb_test "ptype g_E.C::x" "type = int"
9733fc94 455 gdb_test "ptype g_E.D::d" "type = int"
9733fc94 456 gdb_test "ptype g_E.D::x" "type = int"
9733fc94 457 gdb_test "ptype g_E.E::e" "type = int"
9733fc94
DJ
458 gdb_test "ptype g_E.E::x" "type = int"
459}
460
ebac27b4 461# Multiple inheritance, print complete classes.
c906108c 462
ebac27b4
MC
463proc test_print_mi_classes { } {
464 global vhn
c906108c 465
ebac27b4
MC
466 # Print all members of g_D.
467 gdb_test "print g_D" "$vhn = \{\<(class |)B\> = \{\<(class |)A\> = \{a = 11, x = 12\}, b = 13, x = 14\}, \<(class |)C\> = \{\<(class |)A\> = \{a = 15, x = 16\}, c = 17, x = 18\}, d = 19, x = 20\}"
c906108c 468
ebac27b4
MC
469 # Print all members of g_E.
470 gdb_test "print g_E" "$vhn = \{\<(class |)D\> = \{\<(class |)B\> = \{\<(class |)A\> = \{a = 21, x = 22\}, b = 23, x = 24\}, \<(class |)C\> = \{\<(class |)A\> = \{a = 25, x = 26\}, c = 27, x = 28\}, d = 29, x = 30\}, e = 31, x = 32\}"
c906108c
SS
471}
472
ebac27b4
MC
473# Single inheritance, print anonymous unions.
474# GDB versions prior to 4.14 entered an infinite loop when printing
475# the type of a class containing an anonymous union, and they were also
476# incapable of printing the member of an anonymous union.
477# We test the printing of the member first, and perform the other tests
478# only if the test succeeds, to avoid the infinite loop.
c906108c 479#
ebac27b4
MC
480# GDB HEAD 2004-01-27 with hp aCC A.03.45 crashes on the first test.
481# -- chastain 2004-01-27
c906108c 482
ebac27b4 483proc test_print_anon_union {} {
c906108c 484 global gdb_prompt
a0b3c4fd 485 global ws
c906108c 486 global nl
ebac27b4 487 global vhn
c906108c 488
ebac27b4 489 gdb_test "print g_anon_union.a" "$vhn = 2" "print anonymous union member"
c906108c 490
ebac27b4
MC
491 set name "print variable of type anonymous union"
492 gdb_test_multiple "print g_anon_union" $name {
493 -re "$vhn = \{one = 1, \{a = 2, b = 2\}\}$nl$gdb_prompt $" {
494 pass $name
c906108c 495 }
c906108c
SS
496 }
497
25808999
MC
498 # The nested union prints as a multi-line field, but the class body
499 # scanner is inherently line-oriented. This is ugly but it works.
c906108c 500
25808999
MC
501 cp_test_ptype_class \
502 "ptype g_anon_union" "print type of anonymous union" \
503 "class" "class_with_anon_union" \
504 {
505 { field public "int one;" }
506 { field public "union \{" }
507 { field public "int a;" }
508 { field public "long int b;" }
509 { field public "\};" }
a0b3c4fd 510 }
25808999 511
ebac27b4 512}
c906108c 513
c906108c 514
ebac27b4 515# Single virtual inheritance, print individual members.
c906108c 516
ebac27b4
MC
517proc test_print_svi_members { } {
518 global vhn
c906108c 519
ebac27b4
MC
520 # Print all members of g_vA.
521 gdb_test "print g_vA.vA::va" "$vhn = 1"
522 gdb_test "print g_vA.vA::vx" "$vhn = 2"
c906108c 523
ebac27b4
MC
524 # Print members of g_vA using compact form.
525 gdb_test "print g_vA.va" "$vhn = 1"
526 gdb_test "print g_vA.vx" "$vhn = 2"
527
528 # Print all members of g_vB.
529 gdb_test "print g_vB.vA::va" "$vhn = 3"
530 gdb_test "print g_vB.vA::vx" "$vhn = 4"
531 gdb_test "print g_vB.vB::vb" "$vhn = 5"
532 gdb_test "print g_vB.vB::vx" "$vhn = 6"
533
534 # Print members of g_vB using compact form.
535 gdb_test "print g_vB.va" "$vhn = 3"
536 gdb_test "print g_vB.vb" "$vhn = 5"
537 gdb_test "print g_vB.vx" "$vhn = 6"
538
539 # Print all members of g_vC.
540 gdb_test "print g_vC.vA::va" "$vhn = 7"
541 gdb_test "print g_vC.vA::vx" "$vhn = 8"
542 gdb_test "print g_vC.vC::vc" "$vhn = 9"
543 gdb_test "print g_vC.vC::vx" "$vhn = 10"
544
545 # Print members of g_vC using compact form.
546 gdb_test "print g_vC.va" "$vhn = 7" "print g_vC.va"
547 gdb_test "print g_vC.vc" "$vhn = 9" "print g_vC.vc"
548 gdb_test "print g_vC.vx" "$vhn = 10" "print g_vC.vx"
c906108c
SS
549}
550
c906108c 551# Single virtual inheritance, print complete classes.
c906108c 552
ebac27b4 553proc test_print_svi_classes { } {
c906108c
SS
554 global gdb_prompt
555 global hex
c906108c 556 global nl
ebac27b4 557 global vhn
c906108c
SS
558
559 # Print all members of g_vA.
ebac27b4 560 gdb_test "print g_vA" "$vhn = \{va = 1, vx = 2\}"
c906108c
SS
561
562 # Print all members of g_vB.
ebac27b4
MC
563 set re_vbptr_2 "(_vb.2vA|_vb.vA)"
564 set re_vbptr_3 "_vptr.vB"
565
566 set name "print g_vB"
567 gdb_test_multiple "print g_vB" $name {
568 -re "$vhn = \{<vA> = \{va = 3, vx = 4\}, $re_vbptr_2 = $hex, vb = 5, vx = 6\}$nl$gdb_prompt $" {
569 # gcc 2.95.3 -gdwarf-2
570 # gcc 2.95.3 -gstabs+
571 pass $name
572 }
573 -re "$vhn = \{<vA> = \{va = 3, vx = 4\}, $re_vbptr_3 = $hex, vb = 5, vx = 6\}$nl$gdb_prompt $" {
9366563b
MC
574 # gcc 3.3.4 -gdwarf-2
575 # gcc 3.4.1 -gdwarf-2
576 # gcc 3.4.1 -gstabs+
577 # gcc HEAD 2004-07-31 -gdwarf-2
ebac27b4
MC
578 pass "$name (FIXME v3 vtbl ptr)"
579 }
580 -re "$vhn = \{<vA> = \{va = 3, vx = 4\}, $re_vbptr_3 = $hex <VTT for vB>, vb = 5, vx = 6\}$nl$gdb_prompt $" {
9366563b
MC
581 # gcc 3.3.4 -gstabs+
582 pass $name
583 }
584 -re "$vhn = \{<vA> = \{va = 3, vx = 4\}, $re_vbptr_3 = $hex <typeinfo for vB>, vb = 5, vx = 6\}$nl$gdb_prompt $" {
585 # gcc HEAD 2004-07-31 -gstabs+
ebac27b4 586 pass $name
5178b9d6 587 }
c906108c
SS
588 }
589
590 # Print all members of g_vC.
ebac27b4
MC
591 set re_vbptr_2 "(_vb.2vA|_vb.vA)"
592 set re_vbptr_3 "_vptr.vC"
593
594 set name "print g_vC"
595 gdb_test_multiple "print g_vC" $name {
596 -re "$vhn = \{<vA> = \{va = 7, vx = 8\}, $re_vbptr_2 = $hex, vc = 9, vx = 10\}$nl$gdb_prompt $" {
597 # gcc 2.95.3 -gdwarf-2
598 # gcc 2.95.3 -gstabs+
599 pass $name
600 }
601 -re "$vhn = \{<vA> = \{va = 7, vx = 8\}, $re_vbptr_3 = $hex, vc = 9, vx = 10\}$nl$gdb_prompt $" {
9366563b
MC
602 # gcc 3.3.4 -gdwarf-2
603 # gcc 3.4.1 -gdwarf-2
604 # gcc 3.4.1 -gstabs+
605 # gcc HEAD 2004-07-31 -gdwarf-2
ebac27b4
MC
606 pass "$name (FIXME v3 vtbl ptr)"
607 }
608 -re "$vhn = \{<vA> = \{va = 7, vx = 8\}, $re_vbptr_3 = $hex <VTT for vC>, vc = 9, vx = 10\}$nl$gdb_prompt $" {
9366563b
MC
609 # gcc 3.3.4 -gstabs+
610 pass $name
611 }
612 -re "$vhn = \{<vA> = \{va = 7, vx = 8\}, $re_vbptr_3 = $hex <typeinfo for vC>, vc = 9, vx = 10\}$nl$gdb_prompt $" {
613 # gcc HEAD 2004-07-31 -gstabs+
ebac27b4 614 pass $name
a0b3c4fd 615 }
a0b3c4fd 616 }
c906108c
SS
617}
618
c906108c 619# Multiple virtual inheritance, print individual members.
c906108c 620
ebac27b4
MC
621proc test_print_mvi_members { } {
622 global vhn
c906108c
SS
623
624 # Print all members of g_vD.
ebac27b4
MC
625 gdb_test "print g_vD.vA::va" "$vhn = 19"
626 gdb_test "print g_vD.vA::vx" "$vhn = 20"
627 gdb_test "print g_vD.vB::vb" "$vhn = 21"
628 gdb_test "print g_vD.vB::vx" "$vhn = 22"
629 gdb_test "print g_vD.vC::vc" "$vhn = 23"
630 gdb_test "print g_vD.vC::vx" "$vhn = 24"
631 gdb_test "print g_vD.vD::vd" "$vhn = 25"
632 gdb_test "print g_vD.vD::vx" "$vhn = 26"
c906108c
SS
633
634 # Print all members of g_vE.
ebac27b4
MC
635 gdb_test "print g_vE.vA::va" "$vhn = 0"
636 gdb_test "print g_vE.vA::vx" "$vhn = 0"
637 gdb_test "print g_vE.vB::vb" "$vhn = 0"
638 gdb_test "print g_vE.vB::vx" "$vhn = 0"
639 gdb_test "print g_vE.vC::vc" "$vhn = 0"
640 gdb_test "print g_vE.vC::vx" "$vhn = 0"
641 gdb_test "print g_vE.vD::vd" "$vhn = 0"
642 gdb_test "print g_vE.vD::vx" "$vhn = 0"
643 gdb_test "print g_vE.vE::ve" "$vhn = 27"
644 gdb_test "print g_vE.vE::vx" "$vhn = 28"
c906108c
SS
645}
646
ebac27b4 647# Multiple virtual inheritance, print complete classes.
c906108c 648
ebac27b4 649proc test_print_mvi_classes { } {
a0b3c4fd 650 global gdb_prompt
ebac27b4 651 global hex
a0b3c4fd 652 global ws
c906108c 653 global nl
ebac27b4 654 global vhn
c906108c 655
ebac27b4 656 # Virtual base pointers for everybody.
c906108c 657
ebac27b4
MC
658 set re_vbptr_2_vA "(_vb.2vA|_vb.vA)"
659 set re_vbptr_2_vB "(_vb.2vB|_vb.vB)"
660 set re_vbptr_2_vC "(_vb.2vC|_vb.vC)"
661 set re_vbptr_2_vD "(_vb.2vD|_vb.vD)"
662 set re_vbptr_3_vA "_vptr.vA"
663 set re_vbptr_3_vB "_vptr.vB"
664 set re_vbptr_3_vC "_vptr.vC"
665 set re_vbptr_3_vD "_vptr.vD"
666 set re_vbptr_3_vE "_vptr.vE"
c906108c
SS
667
668 # Print all members of g_vD.
669
ebac27b4
MC
670 set name "print g_vD"
671 gdb_test_multiple "print g_vD" $name {
672 -re "$vhn = \{<vB> = \{<vA> = \{va = 19, vx = 20\}, $re_vbptr_2_vA = $hex, vb = 21, vx = 22\}, <vC> = \{$re_vbptr_2_vA = $hex, vc = 23, vx = 24\}, $re_vbptr_2_vC = $hex, $re_vbptr_2_vB = $hex, vd = 25, vx = 26\}$nl$gdb_prompt $" {
673 # gcc 2.95.3 -gdwarf-2
674 # gcc 2.95.3 -gstabs+
675 pass $name
c906108c 676 }
ebac27b4
MC
677 -re "$vhn = \{<vB> = \{<vA> = \{va = 19, vx = 20\}, $re_vbptr_3_vB = $hex, vb = 21, vx = 22\}, <vC> = \{$re_vbptr_3_vC = $hex, vc = 23, vx = 24\}, $re_vbptr_3_vD = $hex, vd = 25, vx = 26\}$nl$gdb_prompt $" {
678 # gcc 3.3.2 -gdwarf-2
679 # gcc HEAD 2004-01-21 -gdwarf-2
680 # gcc HEAD 2004-01-21 -gstabs+
681 pass "$name (FIXME v3 vtbl ptr)"
5178b9d6 682 }
ebac27b4
MC
683 -re "$vhn = \{<vB> = \{<vA> = \{va = 19, vx = 20\}, $re_vbptr_3_vB = $hex, vb = 21, vx = 22\}, <vC> = \{$re_vbptr_3_vC = $hex <VTT for vD>, vc = 23, vx = 24\}, $re_vbptr_3_vD = $hex, vd = 25, vx = 26\}$nl$gdb_prompt $" {
684 # gcc 3.3.2 -gstabs+
685 pass "$name"
3c6cb4a1 686 }
c906108c
SS
687 }
688
689 # Print all members of g_vE.
690
ebac27b4
MC
691 set name "print g_vE"
692 gdb_test_multiple "print g_vE" $name {
693 -re "$vhn = \{<vD> = \{<vB> = \{<vA> = \{va = 0, vx = 0\}, $re_vbptr_2_vA = $hex, vb = 0, vx = 0\}, <vC> = \{$re_vbptr_2_vA = $hex, vc = 0, vx = 0\}, $re_vbptr_2_vC = $hex, $re_vbptr_2_vB = $hex, vd = 0, vx = 0\}, $re_vbptr_2_vD = $hex, ve = 27, vx = 28\}$nl$gdb_prompt $" {
694 # gcc 2.95.3 -gdwarf-2
695 # gcc 2.95.3 -gstabs+
696 pass $name
a0b3c4fd 697 }
ebac27b4 698 -re "$vhn = \{<vD> = \{<vB> = \{<vA> = \{va = 0, vx = 0\}, $re_vbptr_3_vB = $hex, vb = 0, vx = 0\}, <vC> = \{$re_vbptr_3_vC = $hex, vc = 0, vx = 0\}, $re_vbptr_3_vD = $hex, vd = 0, vx = 0\}, $re_vbptr_3_vE = $hex, ve = 27, vx = 28\}$nl$gdb_prompt $" {
9366563b
MC
699 # gcc 3.3.4 -gdwarf-2
700 # gcc 3.3.4 -gstabs+
701 # gcc 3.4.1 -gdwarf-2
702 # gcc 3.4.1 -gstabs+
703 # gcc HEAD 2004-07-31 -gdwarf-2
ebac27b4 704 pass "$name (FIXME v3 vtbl ptr)"
5178b9d6 705 }
ec4646ef
MC
706 -re "$vhn = \{<vD> = \{<vB> = \{<vA> = \{va = 0, vx = 0\}, $re_vbptr_3_vB = $hex, vb = 0, vx = 0\}, <vC> = \{$re_vbptr_3_vC = $hex <VTT for vD>, vc = 0, vx = 0\}, $re_vbptr_3_vD = $hex, vd = 0, vx = 0\}, $re_vbptr_3_vE = $hex, ve = 27, vx = 28\}$nl$gdb_prompt $" {
707 # gcc 3.2.7-rh -gstabs+
9366563b
MC
708 pass $name
709 }
710 -re "$vhn = \{<vD> = \{<vB> = \{<vA> = \{va = 0, vx = 0\}, $re_vbptr_3_vB = $hex, vb = 0, vx = 0\}, <vC> = \{$re_vbptr_3_vC = $hex <typeinfo for vE>, vc = 0, vx = 0\}, $re_vbptr_3_vD = $hex, vd = 0, vx = 0\}, $re_vbptr_3_vE = $hex, ve = 27, vx = 28\}$nl$gdb_prompt $" {
711 # gcc HEAD 2004-07-31 -gstabs+
712 pass $name
ec4646ef 713 }
a0b3c4fd 714 }
c906108c
SS
715}
716
ebac27b4 717proc do_tests { } {
c906108c
SS
718 global prms_id
719 global bug_id
720 global subdir
721 global objdir
722 global srcdir
723 global binfile
724
725 set prms_id 0
726 set bug_id 0
727
728 # Start with a fresh gdb.
729
730 gdb_exit
731 gdb_start
732 gdb_reinitialize_dir $srcdir/$subdir
733 gdb_load $binfile
734
735 gdb_test "set language c++" ""
736 gdb_test "set width 0" ""
737
ebac27b4
MC
738 if { ![runto_main] } then {
739 perror "couldn't run to main"
740 return
c906108c
SS
741 }
742
743 test_ptype_si
744 test_ptype_mi
745 test_ptype_vi
746 test_ptype_mvi
747
ebac27b4
MC
748 if { ![runto 'inheritance2'] } then {
749 perror "couldn't run to inheritance2"
750 return
c906108c
SS
751 }
752
753 test_print_si_members
754 test_print_si_classes
755 test_print_mi_members
9733fc94 756 test_print_mi_member_types
c906108c
SS
757 test_print_mi_classes
758 test_print_anon_union
759
ebac27b4
MC
760 if { ![runto 'inheritance4'] } {
761 perror "couldn't run to inheritance4"
762 return
c906108c
SS
763 }
764
765 test_print_svi_members
766 test_print_svi_classes
767 test_print_mvi_members
768 test_print_mvi_classes
769}
770
771do_tests
This page took 1.179947 seconds and 4 git commands to generate.