]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/anon-struct.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / anon-struct.exp
CommitLineData
53832f31 1# Tests for anonymous union support.
1d506c26 2# Copyright 2011-2024 Free Software Foundation, Inc.
53832f31
TT
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 3 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, see <http://www.gnu.org/licenses/>.
16
ad9421bb
BL
17# This test is used to verify GDB's ability to refer to linkage names
18# for types and functions within anonymous structures.
19
f5f3a911
TT
20standard_testfile .cc
21
5b362f04 22if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debug c++}] } {
53832f31
TT
23 return -1
24}
25
ad9421bb
BL
26# Clang doesn't add any names for functions within anonymous structures,
27# so there is no way to try and refer to them inside GDB.
28if {[test_compiler_info clang-*-* c++]} {
29 untested "clang does not use linkage name in this case"
30 return
31}
32
e3465b24 33if { [is_aarch32_target] } {
f4059ef3
WN
34 gdb_test "ptype t::t" "type = struct t {\r\n C m;\r\n} \\*\\(t \\* const\\)" \
35 "print type of t::t"
36} else {
37 gdb_test "ptype t::t" "type = void \\(t \\* const\\)" \
38 "print type of t::t"
39}
53832f31 40
a73d2258
JK
41gdb_test "ptype X::t2" "type = struct X::t2 {\[\r\n \]*X::C2 m;\[\r\n \]*}" \
42 "print type of X::t2"
43
e3465b24 44if { [is_aarch32_target] } {
f4059ef3
WN
45 gdb_test "ptype X::t2::t2" "type = struct X::t2 {\r\n X::C2 m;\r\n} \\*\\(X::t2 \\* const\\)" \
46 "print type of X::t2::t2"
47 gdb_test "ptype t3::~t3" "type = void \\*\\(t3 \\* const\\)" \
48 "print type of t3::~t3"
49} else {
50 gdb_test "ptype X::t2::t2" "type = void \\(X::t2 \\* const\\)" \
51 "print type of X::t2::t2"
52 gdb_test "ptype t3::~t3" "type = void \\(t3 \\* const\\)" \
53 "print type of t3::~t3"
54}