]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/temargs.exp
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / temargs.exp
CommitLineData
34eaf542
TT
1# temargs.exp - Template argument tests
2#
61baf725 3# Copyright 2010-2017 Free Software Foundation, Inc.
34eaf542
TT
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18# This file is part of the gdb testsuite.
19
34eaf542
TT
20if {[skip_cplus_tests]} {
21 continue
22}
23
f5f3a911 24standard_testfile .cc
34eaf542 25
5b362f04 26if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
34eaf542
TT
27 return -1
28}
29
30if {![runto_main]} {
31 return -1
32}
33
c98ee71b
DE
34# NOTE: prepare_for_testing calls get_compiler_info, which we need
35# for the test_compiler_info calls.
36# gcc 4.4 and earlier don't emit enough info for some of our template tests.
c98ee71b 37set have_older_template_gcc 0
d0e53741
TT
38set have_pr_41736_fixed 1
39set have_pr_45024_fixed 1
c98ee71b
DE
40if {[test_compiler_info {gcc-[0-3]-*}]
41 || [test_compiler_info {gcc-4-[0-4]-*}]} {
42 set have_older_template_gcc 1
d0e53741
TT
43 set have_pr_41736_fixed 0
44 set have_pr_45024_fixed 0
45} elseif {[test_compiler_info {gcc-4-5-*}]} {
46 set have_pr_41736_fixed 0
47 set have_pr_45024_fixed 0
c98ee71b
DE
48}
49
34eaf542
TT
50set line [gdb_get_line_number "Breakpoint 1" $srcfile]
51gdb_test "break $srcfile:$line" "Breakpoint 2.*" \
52 "set first breakpoint for temargs"
c98ee71b 53
34eaf542
TT
54set line [gdb_get_line_number "Breakpoint 2" $srcfile]
55gdb_test "break $srcfile:$line" "Breakpoint 3.*" \
56 "set second breakpoint for temargs"
c98ee71b 57
34eaf542
TT
58set line [gdb_get_line_number "Breakpoint 3" $srcfile]
59gdb_test "break $srcfile:$line" "Breakpoint 4.*" \
60 "set third breakpoint for temargs"
c98ee71b 61
34eaf542
TT
62set line [gdb_get_line_number "Breakpoint 4" $srcfile]
63gdb_test "break $srcfile:$line" "Breakpoint 5.*" \
64 "set fourth breakpoint for temargs"
65
d0e53741
TT
66set line [gdb_get_line_number "Breakpoint 5" $srcfile]
67gdb_test "break $srcfile:$line" "Breakpoint 6.*" \
68 "set fifth breakpoint for temargs"
69
85a20c42
JK
70set line [gdb_get_line_number "Breakpoint 6" $srcfile]
71gdb_test "break $srcfile:$line" "Breakpoint 7.*" \
72 "set sixth breakpoint for temargs"
73
34eaf542
TT
74#
75# Tests in Base::base_m.
76#
77
78gdb_continue_to_breakpoint "continue to first breakpoint for temargs"
79
c98ee71b 80if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 81gdb_test "ptype T" "double" "test type of T in base_m"
c98ee71b
DE
82
83if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 84gdb_test "print I" " = 23" "test value of I in base_m"
c98ee71b
DE
85
86if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 87gdb_test "print P == &a_global" " = true" "test value of P in base_m"
c98ee71b 88
d0e53741 89if {!$have_pr_41736_fixed} { setup_xfail *-*-* }
34eaf542
TT
90gdb_test "print MP" "&S::f" "test value of MP in base_m"
91
92#
93# Tests in Inner::inner_m.
94#
95
96gdb_continue_to_breakpoint "continue to second breakpoint for temargs"
97
d0e53741
TT
98
99if {!$have_pr_45024_fixed} { setup_xfail *-*-* }
34eaf542 100gdb_test "ptype T" "long" "test type of T in inner_m"
c98ee71b 101
d0e53741 102if {!$have_pr_45024_fixed} { setup_xfail *-*-* }
34eaf542 103gdb_test "print I" " = 47" "test value of I in inner_m"
c98ee71b 104
e17476d7
JK
105if $have_older_template_gcc { setup_xfail "*-*-*"
106} elseif {[test_compiler_info {gcc-[0-3]-*}]
107 || [test_compiler_info {gcc-4-[0-5]-*}]} {
108 # gcc-4.5.x still does not emit inner DW_TAG_structure_type.
109 setup_xfail "*-*-*"
110}
34eaf542 111gdb_test "print P == &a_global" " = true" "test value of P in inner_m"
c98ee71b 112
d0e53741 113if {!$have_pr_41736_fixed} { setup_xfail *-*-* }
34eaf542 114gdb_test "print MP" "&S::f" "test value of MP in inner_m"
c98ee71b 115
e17476d7
JK
116if $have_older_template_gcc { setup_xfail "*-*-*"
117} elseif {[test_compiler_info {gcc-[0-3]-*}]
118 || [test_compiler_info {gcc-4-[0-5]-*}]} {
119 # gcc-4.5.x still does not emit outer DW_TAG_structure_type.
120 setup_xfail "*-*-*"
121}
34eaf542
TT
122gdb_test "whatis Z" "float" "test type of Z in inner_m"
123
124#
125# Tests in func.
126#
127
128gdb_continue_to_breakpoint "continue to third breakpoint for temargs"
129
c98ee71b 130if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 131gdb_test "ptype T" "unsigned char" "test type of T in func"
c98ee71b
DE
132
133if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 134gdb_test "print I" " = 91" "test value of I in func"
c98ee71b
DE
135
136if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 137gdb_test "print P == &a_global" " = true" "test value of P in func"
c98ee71b 138
d0e53741 139if {!$have_pr_41736_fixed} { setup_xfail *-*-* }
34eaf542
TT
140gdb_test "print MP" "&S::f" "test value of MP in func"
141
142#
143# Tests in Base::templ_m.
144#
145
146gdb_continue_to_breakpoint "continue to fourth breakpoint for temargs"
147
c98ee71b 148if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 149gdb_test "ptype T" "double" "test type of T in templ_m"
c98ee71b
DE
150
151if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 152gdb_test "print I" " = 23" "test value of I in templ_m"
c98ee71b
DE
153
154if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 155gdb_test "print P == &a_global" " = true" "test value of P in templ_m"
c98ee71b 156
d0e53741 157if {!$have_pr_41736_fixed} { setup_xfail *-*-* }
34eaf542 158gdb_test "print MP" "&S::f" "test value of MP in templ_m"
c98ee71b
DE
159
160if $have_older_template_gcc { setup_xfail "*-*-*" }
34eaf542 161gdb_test "whatis Q" "short" "test type of Q in templ_m"
d0e53741
TT
162
163#
164# Tests in K2::k2_m.
165#
166
167gdb_continue_to_breakpoint "continue to fifth breakpoint for temargs"
168
169if $have_older_template_gcc { setup_xfail "*-*-*" }
170gdb_test "ptype F" "type = void \\\(S::\\\*\\\)\\\(S \\\* const\\\)" \
171 "test type of F in k2_m"
172
13ac8d2c 173setup_xfail gcc/49366 "*-*-*"
d0e53741 174gdb_test "print F" "&S::somefunc" "test value of F in k2_m"
85a20c42
JK
175
176#
177# Tests in K3::k3_m, GCC PR debug/49546.
178# The problem reproduces with DW_AT_MIPS_linkage_name. It does not happen with
179# GDB physname - GDB's own computation of the linkage name based on
180# (incorrectly output by GCC) DW_AT_name.
181#
182
183gdb_continue_to_breakpoint "continue to sixth breakpoint for temargs"
184
900e11f9 185if $have_older_template_gcc { setup_xfail "*-*-*"
13ac8d2c 186} else { setup_xfail gcc/49546 "*-*-*" }
85a20c42
JK
187gdb_test "ptype F" {type = void \(\*\)\(int\)} "test type of F in k3_m"
188
900e11f9 189if $have_older_template_gcc { setup_xfail "*-*-*"
13ac8d2c 190} else { setup_xfail gcc/49546 "*-*-*" }
85a20c42
JK
191gdb_test "print F" { = \(void \(\*\)\(int\)\) 0x[0-9a-f]+ <S3::m\(int\)>} \
192 "test value of F in k3_m"