Automatic date update in version.in
[binutils-gdb.git] / gdb / testsuite / gdb.cp / subtypes.exp
blob871bd7c595f19db621bde61aacdb75cdfc1f22b1
1 # Copyright 2018-2024 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # Test for subtype definitions, i.e., types defined in classes, functions,
17 # etc.
19 require allow_cplus_tests
21 load_lib "cp-support.exp"
23 standard_testfile .cc subtypes-2.cc
25 include_file subtypes.h
27 if {[prepare_for_testing "failed to prepare" $testfile \
28          [list $srcfile $srcfile2] \
29          {debug c++ additional_flags=-std=c++11}]} {
30     return -1
33 # Xfail for superfluous DW_TAG_lexical_block, gcc PR debug/55541.
34 set have_xfail [expr [test_compiler_info gcc-*] && [gcc_major_version] < 5]
36 gdb_test "ptype Outer::Inner::InnerInner" \
37     "type = struct Outer::Inner::InnerInner.*"
38 gdb_test "ptype Outer::Inner" "type = struct Outer::Inner.*"
40 foreach s { Foo Bar Baz } {
41     gdb_test_multiple "ptype main::$s" "" {
42         -re -wrap "type = struct $s.*" {
43             pass $gdb_test_name
44         }
45         -re -wrap "No symbol \"$s\" in specified context\\." {
46             if { $have_xfail } {
47                 setup_xfail *-*-* gcc/55541
48             }
49             fail $gdb_test_name
50         }
52     }
55 gdb_test "ptype Outer::Oenum" "type = enum class Outer::Oenum.*"
57 foreach t { int char } {
58     foreach s { Foo Bar Baz } {
59         gdb_test_multiple "ptype foobar<$t>::$s" "" {
60             -re -wrap "type = struct $s.*" {
61                 pass $gdb_test_name
62             }
63             -re -wrap "No symbol \"$s\" in specified context\\." {
64                 if { $have_xfail } {
65                     setup_xfail *-*-* gcc/55541
66                 }
67                 fail $gdb_test_name
68             }
69         }
70     }
73 gdb_breakpoint "Outer::Inner::doit" message
75 foreach s { Foo Bar Baz } {
76     gdb_breakpoint "main::${s}::doit" message
79 foreach t { int char } {
80     foreach s { Foo Bar Baz } {
81         gdb_breakpoint "foobar<$t>(int)::${s}::doit" message
82     }