Pass -Wno-deprecated-register for gdb.cp that use "register"
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / classes.exp
CommitLineData
b811d2c2 1# Copyright 1992-2020 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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c 16# This file was written by Fred Fish. (fnf@cygnus.com)
1cd3489f 17# And rewritten by Michael Chastain <mec.gnu@mindspring.com>.
c906108c 18
c906108c
SS
19set nl "\[\r\n\]+"
20
d4f3574e 21if { [skip_cplus_tests] } { continue }
c906108c 22
2d3a7986
MC
23load_lib "cp-support.exp"
24
f5f3a911 25standard_testfile .cc
c906108c 26
09fe663e
GB
27if {[prepare_for_testing "failed to prepare" $testfile $srcfile \
28 {debug c++ additional_flags=-Wno-deprecated-register}]} {
f5f3a911 29 return -1
c906108c
SS
30}
31
c906108c 32# Test ptype of class objects.
c906108c
SS
33
34proc test_ptype_class_objects {} {
c906108c 35
1cd3489f 36 # Simple type.
c906108c 37
2d3a7986 38 cp_test_ptype_class \
b3720c3a 39 "struct default_public_struct" "" "struct" "default_public_struct" \
2d3a7986
MC
40 {
41 { field public "int a;" }
42 { field public "int b;" }
c906108c 43 }
c906108c 44
2d3a7986 45 # Another simple type.
c906108c 46
2d3a7986 47 cp_test_ptype_class \
b3720c3a 48 "struct explicit_public_struct" "" "struct" "explicit_public_struct" \
2d3a7986
MC
49 {
50 { field public "int a;" }
51 { field public "int b;" }
c906108c 52 }
c906108c 53
2d3a7986 54 # Another simple type.
2fc1f950 55
2d3a7986 56 cp_test_ptype_class \
b3720c3a 57 "struct protected_struct" "" "struct" "protected_struct" \
2d3a7986
MC
58 {
59 { field protected "int a;" }
60 { field protected "int b;" }
c906108c 61 }
c906108c 62
2d3a7986 63 # Another simple type.
2fc1f950 64
2d3a7986 65 cp_test_ptype_class \
b3720c3a 66 "struct private_struct" "" "struct" "private_struct" \
2d3a7986
MC
67 {
68 { field private "int a;" }
69 { field private "int b;" }
c906108c 70 }
c906108c 71
2d3a7986 72 # A bigger type.
2fc1f950 73
2d3a7986 74 cp_test_ptype_class \
b3720c3a 75 "struct mixed_protection_struct" "" "struct" "mixed_protection_struct" \
2d3a7986
MC
76 {
77 { field public "int a;" }
78 { field public "int b;" }
79 { field private "int c;" }
80 { field private "int d;" }
81 { field protected "int e;" }
82 { field protected "int f;" }
83 { field public "int g;" }
84 { field private "int h;" }
85 { field protected "int i;" }
c906108c 86 }
c906108c 87
1cd3489f
MC
88 # All that again with "class" instead of "struct".
89 # gdb does not care about the difference anyways.
c906108c 90
2d3a7986 91 cp_test_ptype_class \
b3720c3a 92 "class public_class" "" "class" "public_class" \
2d3a7986
MC
93 {
94 { field public "int a;" }
95 { field public "int b;" }
c906108c 96 }
1cd3489f 97
2d3a7986 98 # Another simple type.
2fc1f950 99
2d3a7986 100 cp_test_ptype_class \
b3720c3a 101 "class protected_class" "" "class" "protected_class" \
2d3a7986
MC
102 {
103 { field protected "int a;" }
104 { field protected "int b;" }
c906108c 105 }
c906108c 106
2d3a7986 107 # Another simple type.
2fc1f950 108
2d3a7986 109 cp_test_ptype_class \
b3720c3a 110 "class default_private_class" "" "class" "default_private_class" \
2d3a7986
MC
111 {
112 { field private "int a;" }
113 { field private "int b;" }
c906108c 114 }
1cd3489f 115
2d3a7986 116 # Another simple type.
2fc1f950 117
2d3a7986 118 cp_test_ptype_class \
b3720c3a 119 "class explicit_private_class" "" "class" "explicit_private_class" \
2d3a7986
MC
120 {
121 { field private "int a;" }
122 { field private "int b;" }
c906108c 123 }
c906108c 124
2d3a7986 125 # A bigger type.
1cd3489f 126
2d3a7986 127 cp_test_ptype_class \
b3720c3a 128 "class mixed_protection_class" "" "class" "mixed_protection_class" \
2d3a7986 129 {
2fc1f950 130
2d3a7986
MC
131 { field public "int a;" }
132 { field public "int b;" }
133 { field private "int c;" }
134 { field private "int d;" }
135 { field protected "int e;" }
136 { field protected "int f;" }
137 { field public "int g;" }
138 { field private "int h;" }
139 { field protected "int i;" }
c906108c 140 }
c906108c 141
1cd3489f
MC
142 # Here are some classes with inheritance.
143
144 # Base class.
145
2d3a7986 146 cp_test_ptype_class \
b3720c3a 147 "class A" "" "class" "A" \
2d3a7986
MC
148 {
149 { field public "int a;" }
150 { field public "int x;" }
c906108c 151 }
c906108c 152
1cd3489f
MC
153 # Derived class.
154
2d3a7986 155 cp_test_ptype_class \
b3720c3a 156 "class B" "" "class" "B" \
2d3a7986
MC
157 {
158 { base "public A" }
159 { field public "int b;" }
160 { field public "int x;" }
c906108c 161 }
c906108c 162
1cd3489f
MC
163 # Derived class.
164
2d3a7986 165 cp_test_ptype_class \
b3720c3a 166 "class C" "" "class" "C" \
2d3a7986
MC
167 {
168 { base "public A" }
169 { field public "int c;" }
170 { field public "int x;" }
c906108c 171 }
c906108c 172
1cd3489f
MC
173 # Derived class, multiple inheritance.
174
2d3a7986 175 cp_test_ptype_class \
b3720c3a 176 "class D" "" "class" "D" \
2d3a7986
MC
177 {
178 { base "public B" }
179 { base "public C" }
180 { field public "int d;" }
181 { field public "int x;" }
c906108c 182 }
c906108c 183
1cd3489f
MC
184 # Derived class.
185
2d3a7986 186 cp_test_ptype_class \
b3720c3a 187 "class E" "" "class" "E" \
2d3a7986
MC
188 {
189 { base "public D" }
190 { field public "int e;" }
191 { field public "int x;" }
c906108c 192 }
c906108c 193
1cd3489f
MC
194 # This is a break from inheritance tests.
195 #
196 # gcc 2.X with stabs (stabs or stabs+?) used to have a problem with
197 # static methods whose name is the same as their argument mangling.
198
2d3a7986 199 cp_test_ptype_class \
b3720c3a 200 "class Static" "" "class" "Static" \
2d3a7986
MC
201 {
202 { method public "static void ii(int, int);" }
3e36a0f4 203 }
af890c52 204
1cd3489f
MC
205 # Here are some virtual inheritance tests.
206
2d3a7986 207 # A virtual base class.
2fc1f950 208
2d3a7986 209 cp_test_ptype_class \
b3720c3a 210 "class vA" "" "class" "vA" \
2d3a7986
MC
211 {
212 { field public "int va;" }
213 { field public "int vx;" }
c906108c 214 }
c906108c 215
2d3a7986 216 # A derived class with a virtual base.
2fc1f950 217
2d3a7986 218 cp_test_ptype_class \
b3720c3a 219 "class vB" "" "class" "vB" \
2d3a7986
MC
220 {
221 { base "public virtual vA" }
222 { vbase "vA" }
223 { field public "int vb;" }
224 { field public "int vx;" }
2fc1f950 225 }
c906108c 226
2d3a7986 227 # Another derived class with a virtual base.
c906108c 228
2d3a7986 229 cp_test_ptype_class \
b3720c3a 230 "class vC" "" "class" "vC" \
2d3a7986
MC
231 {
232 { base "public virtual vA" }
233 { vbase "vA" }
234 { field public "int vc;" }
235 { field public "int vx;" }
c906108c 236 }
c906108c 237
2d3a7986 238 # A classic diamond class.
2fc1f950 239
2d3a7986 240 cp_test_ptype_class \
b3720c3a 241 "class vD" "" "class" "vD" \
2d3a7986
MC
242 {
243 { base "public virtual vB" }
244 { base "public virtual vC" }
245 { vbase "vC" }
246 { vbase "vB" }
247 { field public "int vd;" }
248 { field public "int vx;" }
c906108c 249 }
c906108c 250
2d3a7986 251 # A class derived from a diamond class.
c906108c 252
2d3a7986 253 cp_test_ptype_class \
b3720c3a 254 "class vE" "" "class" "vE" \
2d3a7986
MC
255 {
256 { base "public virtual vD" }
257 { vbase "vD" }
258 { field public "int ve;" }
259 { field public "int vx;" }
5178b9d6 260 }
c906108c 261
1cd3489f
MC
262 # Another inheritance series.
263
2d3a7986
MC
264 # A base class.
265
266 cp_test_ptype_class \
b3720c3a 267 "class Base1" "" "class" "Base1" \
2d3a7986
MC
268 {
269 { field public "int x;" }
270 { method public "Base1(int);" }
271 }
272
273 # Another base class.
274
275 cp_test_ptype_class \
b3720c3a 276 "class Foo" "" "class" "Foo" \
2d3a7986
MC
277 {
278 { field public "int x;" }
279 { field public "int y;" }
280 { field public "static int st;" }
281 { method public "Foo(int, int);" }
282 { method public "int operator!();" }
283 { method public "operator int();" }
284 { method public "int times(int);" }
285 } \
286 "" \
287 {
288 {
289 "operator int();"
290 "int operator int();"
291 { setup_kfail "gdb/1497" "*-*-*" }
292 }
293 {
294 "operator int();"
295 "int operator int(void);"
296 { setup_kfail "gdb/1497" "*-*-*" }
297 }
3e36a0f4 298 }
c906108c 299
1cd3489f
MC
300 # A multiple inheritance derived class.
301
2d3a7986 302 cp_test_ptype_class \
b3720c3a 303 "class Bar" "" "class" "Bar" \
2d3a7986
MC
304 {
305 { base "public Base1" }
306 { base "public Foo" }
307 { field public "int z;" }
308 { method public "Bar(int, int, int);" }
c906108c 309 }
2d3a7986 310
0def5aaa
DE
311 # Derived class with typedef'd baseclass with virtual methods.
312
313 cp_test_ptype_class \
314 "class DynamicBar" "" "class" "DynamicBar" \
315 {
316 { base "public DynamicBase2" }
317 { field public "int y;" }
318 { method public "DynamicBar(int, int);" }
319 }
c191a687
KS
320
321 # Classes with typedefs of different access.
322
323 cp_test_ptype_class \
324 "class class_with_typedefs" "" "class" "class_with_typedefs" \
325 {
326 { field protected \
327 "class_with_typedefs::public_int public_int_;" }
328 { field protected \
329 "class_with_typedefs::protected_int protected_int_;" }
330 { field protected \
331 "class_with_typedefs::private_int private_int_;" }
332 { method public "class_with_typedefs(void);" }
333 { method public "class_with_typedefs::public_int add_public(class_with_typedefs::public_int);" }
334 { method public \
335 "class_with_typedefs::public_int add_all(int);" }
336 { method protected "class_with_typedefs::protected_int add_protected(class_with_typedefs::protected_int);" }
337 { method private "class_with_typedefs::private_int add_private(class_with_typedefs::private_int);" }
338 { typedef public "typedef int public_int;" }
339 { typedef protected "typedef int protected_int;" }
340 { typedef private "typedef int private_int;" }
341 }
342
343 cp_test_ptype_class \
344 "class class_with_public_typedef" "" "class" \
345 "class_with_public_typedef" {
346 { field private "int a;" }
347 { field public "class_with_public_typedef::INT b;" }
348 { typedef public "typedef int INT;" }
349 }
350 cp_test_ptype_class \
351 "class class_with_protected_typedef" "" "class" \
352 "class_with_protected_typedef" {
353 { field private "int a;" }
354 { field protected "class_with_protected_typedef::INT b;" }
355 { typedef protected "typedef int INT;" }
356 }
357 cp_test_ptype_class \
358 "struct struct_with_protected_typedef" "" "struct" \
359 "struct_with_protected_typedef" {
360 { field public "int a;" }
361 { field protected "struct_with_protected_typedef::INT b;" }
362 { typedef protected "typedef int INT;" }
363 }
364 cp_test_ptype_class \
365 "struct struct_with_private_typedef" "" "struct" \
366 "struct_with_private_typedef" {
367 { field public "int a;" }
368 { field private "struct_with_private_typedef::INT b;" }
369 { typedef private "typedef int INT;" }
370 }
371
372 # For the following two cases, we cannot use cp_test_ptype_class.
373 # We need to explicitly check whether the access label was suppressed.
374 set ws {[ \t\r\n]*}
375 foreach {tag lbl} {"class" "private" "struct" "public"} {
376 gdb_test "ptype/r ${tag}_with_${lbl}_typedef" "type = $tag ${tag}_with_${lbl}_typedef \{${ws}int a;${ws}${tag}_with_${lbl}_typedef::INT b;${ws}typedef int INT;${ws}\}"
377 }
c906108c
SS
378}
379
c906108c 380# Test simple access to class members.
c906108c
SS
381
382proc test_non_inherited_member_access {} {
c906108c
SS
383
384 # Print non-inherited members of g_A.
226a8d71
MC
385 gdb_test "print g_A.a" ".* = 1"
386 gdb_test "print g_A.x" ".* = 2"
c906108c
SS
387
388 # Print non-inherited members of g_B.
226a8d71
MC
389 gdb_test "print g_B.b" ".* = 5"
390 gdb_test "print g_B.x" ".* = 6"
c906108c
SS
391
392 # Print non-inherited members of g_C.
226a8d71
MC
393 gdb_test "print g_C.c" ".* = 9"
394 gdb_test "print g_C.x" ".* = 10"
c906108c
SS
395
396 # Print non-inherited members of g_D.
226a8d71
MC
397 gdb_test "print g_D.d" ".* = 19"
398 gdb_test "print g_D.x" ".* = 20"
c906108c
SS
399
400 # Print non-inherited members of g_E.
226a8d71
MC
401 gdb_test "print g_E.e" ".* = 31"
402 gdb_test "print g_E.x" ".* = 32"
c906108c
SS
403}
404
1cd3489f
MC
405# Test access to members of other classes.
406# gdb should refuse to print them.
407# (I feel old -- I remember when this was legal in C -- chastain).
c906108c
SS
408
409proc test_wrong_class_members {} {
226a8d71
MC
410 gdb_test "print g_A.b" "There is no member( or method|) named b."
411 gdb_test "print g_B.c" "There is no member( or method|) named c."
412 gdb_test "print g_B.d" "There is no member( or method|) named d."
413 gdb_test "print g_C.b" "There is no member( or method|) named b."
414 gdb_test "print g_C.d" "There is no member( or method|) named d."
415 gdb_test "print g_D.e" "There is no member( or method|) named e."
c906108c
SS
416}
417
1cd3489f 418# Test access to names that are not members of any class.
c906108c 419
2bec0572 420proc test_nonexistent_members {} {
226a8d71
MC
421 gdb_test "print g_A.y" "There is no member( or method|) named y."
422 gdb_test "print g_B.z" "There is no member( or method|) named z."
423 gdb_test "print g_C.q" "There is no member( or method|) named q."
424 gdb_test "print g_D.p" "There is no member( or method|) named p."
c906108c
SS
425}
426
54602222
ND
427# Call a method that expects a base class parameter with base, inherited,
428# and unrelated class arguments.
54602222
ND
429
430proc test_method_param_class {} {
226a8d71
MC
431 gdb_test "call class_param.Aptr_a (&g_A)" ".* = 1"
432 gdb_test "call class_param.Aptr_x (&g_A)" ".* = 2"
433 gdb_test "call class_param.Aptr_a (&g_B)" ".* = 3"
434 gdb_test "call class_param.Aptr_x (&g_B)" ".* = 4"
435 gdb_test "call class_param.Aref_a (g_A)" ".* = 1"
436 gdb_test "call class_param.Aref_x (g_A)" ".* = 2"
437 gdb_test "call class_param.Aref_a (g_B)" ".* = 3"
438 gdb_test "call class_param.Aref_x (g_B)" ".* = 4"
439 gdb_test "call class_param.Aval_a (g_A)" ".* = 1"
440 gdb_test "call class_param.Aval_x (g_A)" ".* = 2"
441 gdb_test "call class_param.Aval_a (g_B)" ".* = 3"
442 gdb_test "call class_param.Aval_x (g_B)" ".* = 4"
54602222
ND
443
444 gdb_test "call class_param.Aptr_a (&foo)" "Cannot resolve .*" "unrelated class *param"
445 gdb_test "call class_param.Aref_a (foo)" "Cannot resolve .*" "unrelated class &param"
446 gdb_test "call class_param.Aval_a (foo)" "Cannot resolve .*" "unrelated class param"
447}
448
2bec0572 449# Examine a class with an enum field.
2bec0572
ND
450
451proc test_enums {} {
452 global gdb_prompt
1cd3489f 453 global nl
2bec0572
ND
454
455 # print the object
2bec0572 456
0114d602
DJ
457 # We match the enum values with and without qualifiers. As of
458 # 2008-08-21 we can output the qualifiers for DWARF-2.
459
1cd3489f 460 gdb_test "print obj_with_enum" \
0114d602 461 "\\$\[0-9\]+ = \{priv_enum = (ClassWithEnum::)?red, x = 0\}" \
1cd3489f
MC
462 "print obj_with_enum (1)"
463
464 # advance one line
465
f6978de9 466 gdb_test "next" ".*"
1cd3489f 467
2bec0572 468 # print the object again
2bec0572 469
1cd3489f 470 gdb_test "print obj_with_enum" \
0114d602 471 "\\$\[0-9\]+ = \{priv_enum = (ClassWithEnum::)?green, x = 0\}" \
1cd3489f
MC
472 "print obj_with_enum (2)"
473
474 # print the enum member
475
0114d602 476 gdb_test "print obj_with_enum.priv_enum" "\\$\[0-9\]+ = (ClassWithEnum::)?green"
2bec0572
ND
477
478 # ptype on the enum member
1cd3489f
MC
479
480 gdb_test_multiple "ptype obj_with_enum.priv_enum" "ptype obj_with_enum.priv_enum" {
9720e656 481 -re "type = enum ClassWithEnum::PrivEnum (: unsigned (int|short|char) )?\{ ?(ClassWithEnum::)?red, (ClassWithEnum::)?green, (ClassWithEnum::)?blue, (ClassWithEnum::)?yellow = 42 ?\}$nl$gdb_prompt $" {
1cd3489f
MC
482 pass "ptype obj_with_enum.priv_enum"
483 }
0114d602 484 -re "type = enum PrivEnum \{ ?(ClassWithEnum::)?red, (ClassWithEnum::)?green, (ClassWithEnum::)?blue, (ClassWithEnum::)?yellow = 42 ?\}$nl$gdb_prompt $" {
1cd3489f
MC
485 # gcc 2.95.3 -gdwarf-2
486 # gcc 3.3.2 -gdwarf-2
487 pass "ptype obj_with_enum.priv_enum"
488 }
489 -re "type = enum \{ ?red, green, blue, yellow = 42 ?\}$nl$gdb_prompt $" {
490 # This case case is a little dubious, but it's not clear what
491 # ought to be required of a ptype on a private enum...
492 # -sts 19990324
493 #
494 # It bugs me that this happens with gcc 3.
495 # -- chastain 2003-12-30
496 #
497 # gcc 2.95.3 -gstabs+
498 # gcc 3.3.2 -gstabs+
499 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
500 pass "ptype obj_with_enum.priv_enum"
501 }
2bec0572
ND
502 }
503
504 # ptype on the object
2fc1f950 505
2d3a7986
MC
506 # NOTE: carlton/2003-02-28: One could certainly argue that plain
507 # "PrivEnum"
508 # is acceptable: PrivEnum is a member of ClassWithEnum, so
509 # there's no need to explicitly qualify its name with
510 # "ClassWithEnum::". The truth, though, is that GDB is simply
511 # forgetting that PrivEnum is a member of ClassWithEnum, so we do
512 # that output for a bad reason instead of a good reason. Under
513 # stabs, we probably can't get this right; under DWARF-2, we can.
514
515 cp_test_ptype_class \
b3720c3a 516 "obj_with_enum" "" "class" "ClassWithEnum" \
2d3a7986
MC
517 {
518 { field public "ClassWithEnum::PrivEnum priv_enum;" }
519 { field public "int x;" }
520 } \
521 "" \
522 {
523 {
524 "ClassWithEnum::PrivEnum priv_enum;"
525 "PrivEnum priv_enum;"
526 { setup_kfail "gdb/57" "*-*-*" }
527 }
1cd3489f 528 }
2bec0572 529
1cd3489f 530 # I'll do this test two different ways, because of a parser bug.
23c73aa3 531 # See PR gdb/1588.
6ece72da 532
1cd3489f 533 gdb_test_multiple "print (ClassWithEnum::PrivEnum) 42" "print (ClassWithEnum::PrivEnum) 42" {
0114d602 534 -re "\\$\[0-9\]+ = (ClassWithEnum::)?yellow$nl$gdb_prompt $" {
1cd3489f 535 pass "print (ClassWithEnum::PrivEnum) 42"
d8a2d9e7 536 }
1cd3489f
MC
537 -re "A (parse|syntax) error in expression, near `42'.$nl$gdb_prompt $" {
538 # "parse error" is bison 1.35.
539 # "syntax error" is bison 1.875.
23c73aa3 540 kfail "gdb/1588" "print (ClassWithEnum::PrivEnum) 42"
d8a2d9e7 541 }
2bec0572 542 }
6ece72da 543
1cd3489f 544 gdb_test_multiple "print ('ClassWithEnum::PrivEnum') 42" "print ('ClassWithEnum::PrivEnum') 42" {
0114d602 545 -re "\\$\[0-9\]+ = (ClassWithEnum::)?yellow$nl$gdb_prompt $" {
1cd3489f
MC
546 # gcc 3.3.2 -gstabs+
547 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
548 pass "print ('ClassWithEnum::PrivEnum') 42"
549 }
550 -re "No symbol \"ClassWithEnum::PrivEnum\" in current context.$nl$gdb_prompt $" {
551 # gcc 2.95.3 -gdwarf-2
552 # gcc 3.3.2 -gdwarf-2
553 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
554 # gcc 2.95.3 -gstabs+
555 kfail "gdb/57" "print ('ClassWithEnum::PrivEnum') 42"
556 }
6ece72da 557 }
2bec0572
ND
558}
559
c906108c 560# Pointers to class members
c906108c
SS
561
562proc test_pointers_to_class_members {} {
0d5de010
DJ
563 gdb_test "print Bar::z" "Cannot reference non-static field \"z\""
564 gdb_test "print &Foo::x" "\\$\[0-9\]+ = &Foo::x"
1cd3489f
MC
565 gdb_test "print (int)&Foo::x" "\\$\[0-9\]+ = 0"
566 gdb_test "print (int)&Bar::y == 2*sizeof(int)" "\\$\[0-9\]+ = true"
184ad485 567
0d5de010
DJ
568 gdb_test "ptype Bar::z" "type = int"
569 gdb_test "ptype &Bar::z" "type = int Bar::\\*"
570
184ad485
MC
571 # TODO: this is a bogus test. It's looking at a variable that
572 # has not even been declared yet, so it's accessing random junk
573 # on the stack and comparing that it's NOT equal to a specific
574 # value. It's been like this since gdb 4.10 in 1993!
575 # -- chastain 2004-01-01
576 gdb_test "print (int)pmi == sizeof(int)" ".* = false"
c906108c
SS
577}
578
c906108c 579# Test static members.
c906108c
SS
580
581proc test_static_members {} {
c906108c 582 global hex
c906108c 583
1cd3489f 584 gdb_test "print Foo::st" "\\$\[0-9\]+ = 100"
35ec993f 585 gdb_test_no_output "set foo.st = 200" ""
1cd3489f 586 gdb_test "print bar.st" "\\$\[0-9\]+ = 200"
9cb709b6
TT
587 gdb_test "print &foo.st" "\\$\[0-9\]+ = \\(int ?\\*\\) $hex <Foo::st>"
588 gdb_test "print &Bar::st" "\\$\[0-9\]+ = \\(int ?\\*\\) $hex <Foo::st>"
1cd3489f 589 gdb_test "print *\$" "\\$\[0-9\]+ = 200"
c906108c 590
a8d52276 591 gdb_test_no_output "set print static-members off"
c906108c
SS
592 gdb_test "print csi" \
593 "{x = 10, y = 20}" \
594 "print csi without static members"
595 gdb_test "print cnsi" \
596 "{x = 30, y = 40}" \
597 "print cnsi without static members"
598
a8d52276 599 gdb_test_no_output "set print static-members on"
c906108c
SS
600 gdb_test "print csi" \
601 "{x = 10, y = 20, static null = {x = 0, y = 0, static null = <same as static member of an already seen type>}}" \
602 "print csi with static members"
c906108c
SS
603 gdb_test "print cnsi" \
604 "{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>}" \
605 "print cnsi with static members"
a43f3893
PF
606
607 # Another case of infinite recursion.
608 gdb_test "print Outer::instance" \
609 "{inner = {static instance = {static instance = <same as static member of an already seen type>}}, static instance = {inner = {static instance = {static instance = <same as static member of an already seen type>}}, static instance = <same as static member of an already seen type>}}" \
610 "print recursive static member"
c906108c
SS
611}
612
613proc do_tests {} {
c906108c 614 global gdb_prompt
1cd3489f 615 global nl
c906108c 616
c906108c 617
35ec993f
MS
618 gdb_test_no_output "set language c++" ""
619 gdb_test_no_output "set width 0" ""
c906108c 620
1cd3489f
MC
621 if ![runto_main ] then {
622 perror "couldn't run to breakpoint"
623 return
2bec0572
ND
624 }
625
1cd3489f
MC
626 gdb_breakpoint inheritance2
627 gdb_test "continue" ".*Breakpoint .* inheritance2.*" ""
c906108c 628
1cd3489f
MC
629 test_ptype_class_objects
630 test_non_inherited_member_access
631 test_wrong_class_members
632 test_nonexistent_members
633 test_method_param_class
c906108c 634
1cd3489f 635 gdb_breakpoint enums2
184ad485 636 gdb_test "continue" ".*Breakpoint .* enums2.*" "continue to enums2(\\(\\)|)"
471ba8c9
DJ
637 # Leave enums2. Make sure we reach the next line, in case there
638 # are any more instructions to finish the function call.
639 gdb_test_multiple "finish" "" {
640 -re "enums2 \\(\\);.*$gdb_prompt $" {
de7ff789 641 gdb_test "next" ".*" ""
471ba8c9
DJ
642 }
643 -re "$gdb_prompt $" { }
644 }
1cd3489f
MC
645 test_enums
646
de7ff789 647 gdb_test "finish" ".*" ""
184ad485
MC
648 test_pointers_to_class_members
649 test_static_members
650
1cd3489f
MC
651 # Now some random tests that were just thrown in here.
652
653 gdb_breakpoint marker_reg1
654 gdb_test "continue" ".*Breakpoint .* marker_reg1.*" ""
655 gdb_test "finish" "Run till exit from.*" "finish from marker_reg1"
656
657 # This class is so small that an instance of it can fit in a register.
658 # When gdb tries to call a method, it gets embarrassed about taking
659 # the address of a register.
660 #
661 # TODO: I think that message should be a PASS, not an XFAIL.
662 # gdb prints an informative message and declines to do something
663 # impossible.
664 #
665 # The method call actually succeeds if the compiler allocates very
666 # small classes in memory instead of registers. So this test does
667 # not tell us anything interesting if the call succeeds.
668 #
669 # -- chastain 2003-12-31
670 gdb_test_multiple "print v.method ()" "calling method for small class" {
671 -re "\\$\[0-9\]+ = 82$nl$gdb_prompt $" {
672 # gcc 3.3.2 -gdwarf-2
673 # gcc HEAD 2003-12-28 21:08:30 UTC -gdwarf-2
674 # gcc 3.3.2 -gstabs+
675 # gcc HEAD 2003-12-28 21:08:30 UTC -gstabs+
676 pass "calling method for small class"
677 }
678 -re "Address requested for identifier \"v\" which is in register .*$nl$gdb_prompt $" {
679 # gcc 2.95.3 -gdwarf-2
680 # gcc 2.95.3 -gstabs+
681 setup_xfail "*-*-*" 2972
682 fail "calling method for small class"
c906108c
SS
683 }
684 }
3fe8f3b3
KS
685
686 gdb_test "print base1::Base1" "<.*Base1.*>" "print ctor of typedef class"
687 gdb_test "print base1::~Base1" "<.*~Base1(\\(\\))?>" \
688 "print dtor of typedef class"
40f0318e
KS
689
690 gdb_test "list ByAnyOtherName::times" ".*int Foo::times.*"
c906108c
SS
691}
692
693do_tests
This page took 2.152304 seconds and 4 git commands to generate.