2010-06-02 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / templates.exp
CommitLineData
9b254dd1 1# Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2007,
4c38e0a4 2# 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
SS
17# This file was written by Fred Fish. (fnf@cygnus.com)
18
19set ws "\[\r\n\t \]+"
20
21if $tracelevel then {
22 strace $tracelevel
23}
24
d4f3574e
SS
25if { [skip_cplus_tests] } { continue }
26
c906108c
SS
27set testfile "templates"
28set srcfile ${testfile}.cc
29set binfile ${objdir}/${subdir}/${testfile}
30
31# Create and source the file that provides information about the compiler
32# used to compile the test case.
33if [get_compiler_info ${binfile} "c++"] {
34 return -1
35}
c906108c 36
c906108c 37if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
38 untested templates.exp
39 return -1
c906108c
SS
40}
41
c906108c
SS
42#
43# Test printing of the types of templates.
44#
45
46proc test_ptype_of_templates {} {
47 global gdb_prompt
48 global ws
49
f8d3bf8f 50 gdb_test_multiple "ptype T5<int>" "ptype T5<int>" {
1bc05c3a 51 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}T5<int> & operator=\\(T5<int> const ?&\\);${ws}T5\\(int\\);${ws}T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\((void|)\\);${ws}static void \\* operator new\\(unsigned( int| long)?\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
c906108c
SS
52 pass "ptype T5<int>"
53 }
3b0cb202
MC
54 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}T5\\(int\\);${ws}T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\((void|)\\);${ws}static void \\* operator new\\(unsigned( int| long)?\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}T5<int> & operator=\\(T5<int> const ?&\\);${ws}\}\r\n$gdb_prompt $" {
55 pass "ptype T5<int>"
56 }
f8d3bf8f
MS
57 -re "type = class T5<int> \\{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}${ws}T5 \\(int\\);${ws}T5 \\(const class T5<int> &\\);${ws}void ~T5 \\(int\\);${ws}static void \\* new \\(unsigned int\\);${ws}static void delete \\(void ?\\*\\);${ws}int value \\((void|)\\);${ws}\\}${ws}$gdb_prompt $" {
58 pass "ptype T5<int> -- new with unsigned int"
59 }
60 -re "type = class T5<int> \\{.*public:.*static int X;.*int x;.*int val;.*T5 \\(int\\);.*T5 \\(const class T5<int> &\\);.*void ~T5 \\(int\\);.*static void \\* new \\(unsigned long\\);.*static void delete \\(void ?\\*\\);.*int value \\((void|)\\);.*\\}\r\n$gdb_prompt $" {
61 pass "ptype T5<int> -- new with unsigned long"
62 }
1bc05c3a 63 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;((${ws}T5<int> & operator=\\(T5<int> const ?&\\);)|(${ws}T5\\(int\\);)|(${ws}T5\\((T5<int> const|const T5<int>) ?&\\);)|(${ws}~T5\\((void|)\\);)|(${ws}static void \\* operator new\\(unsigned( int| long)?\\);)|(${ws}static void operator delete\\(void ?\\*\\);)|(${ws}int value\\((void|)\\);))*${ws}\}\r\n$gdb_prompt $" {
c906108c
SS
64 pass "ptype T5<int> (obsolescent gcc or gdb)"
65 }
3c00b570 66 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}void T5\\(int\\);${ws}void T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\(int\\);${ws}static void \\* operator new\\(unsigned( int| long|)\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
5330f2db
DC
67 # This also triggers gdb/1113...
68 kfail "gdb/1111" "ptype T5<int>"
69 }
c906108c
SS
70 }
71
f8d3bf8f
MS
72 gdb_test_multiple "ptype t5i" "ptype t5i" {
73 -re "type = class T5<int> \\{${ws}public:${ws}static int X;${ws}int x;${ws}int val;\r\n${ws}T5\\(int\\);${ws}T5\\(T5<int> const ?&\\);${ws}~T5\\((void|)\\);${ws}static void \\* operator new\\(unsigned( int| long)?\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\\}\r\n$gdb_prompt $" {
74 pass "ptype T5<int> -- with several fixes from 4.17"
75 }
76 -re "type = class T5<int> \\{${ws}public:${ws}static int X;${ws}int x;${ws}int val;\r\n${ws}T5 \\(int\\);${ws}T5 \\(const class T5<int> &\\);${ws}void ~T5 \\(int\\);${ws}static void \\* new \\(unsigned int\\);${ws}static void delete \\(void ?\\*\\);${ws}int value \\((void|)\\);${ws}\\}\r\n$gdb_prompt $" {
77 pass "ptype t5i<int> -- new with unsigned int"
78 }
79 -re "type = class T5<int> \\{${ws}public:${ws}static int X;${ws}int x;${ws}int val;\r\n${ws}T5 \\(int\\);${ws}T5 \\(const class T5<int> &\\);${ws}void ~T5 \\(int\\);${ws}static void \\* new \\(unsigned long\\);${ws}static void delete \\(void ?\\*\\);${ws}int value \\((void|)\\);${ws}\\}\r\n$gdb_prompt $" {
80 pass "ptype t5i<int> -- new with unsigned long"
81 }
eef747c0 82 -re "type = class T5<int> \{.*public:.*static int X;.*int x;.*int val;.*.*T5 \\(int\\);.*.*void ~T5 \\(int\\).*.*.*int value \\((void|)\\);.*\}.*$gdb_prompt $" {
a0b3c4fd
JM
83 pass "ptype t5i"
84 }
1bc05c3a 85 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}T5<int> & operator=\\(T5<int> const ?&\\);${ws}T5\\(int\\);${ws}T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\((void|)\\);${ws}static void \\* operator new\\(unsigned( int| long)?\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
c906108c
SS
86 pass "ptype t5i"
87 }
3b0cb202
MC
88 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}T5\\(int\\);${ws}T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\((void|)\\);${ws}static void \\* operator new\\(unsigned( int| long)?\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}T5<int> & operator=\\(T5<int> const ?&\\);${ws}\}\r\n$gdb_prompt $" {
89 pass "ptype t5i"
90 }
3b2a7ae5 91 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;((${ws}T5<int> & operator=\\(T5<int> const ?&\\);)|(${ws}T5\\(int\\);)|(${ws}T5\\(T5<int> const ?&\\);)|(${ws}~T5\\((void|)\\);)|(${ws}static void \\* operator new\\(unsigned( int| long)?\\);)|(${ws}static void operator delete\\(void ?\\*\\);)|(${ws}int value\\((void|)\\);))*${ws}\}\r\n$gdb_prompt $" {
c906108c
SS
92 pass "ptype t5i (obsolescent gcc or gdb)"
93 }
3c00b570 94 -re "type = class T5<int> \{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}void T5\\(int\\);${ws}void T5\\((T5<int> const|const T5<int>) ?&\\);${ws}~T5\\(int\\);${ws}static void \\* operator new\\(unsigned( int| long|)\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
5330f2db
DC
95 # This also triggers gdb/1113...
96 kfail "gdb/1111" "ptype T5<int>"
97 }
c906108c
SS
98 }
99}
100
101#
102# Test breakpoint setting on template methods.
103#
104
105proc test_template_breakpoints {} {
106 global gdb_prompt
107 global testfile
108 global srcdir
a0b3c4fd 109 global hp_aCC_compiler
c906108c 110
b598bfda 111 gdb_test_multiple "break T5<int>::T5" "constructor breakpoint" {
1bc05c3a 112 -re "0. cancel.*\[\r\n\]*.1. all.*\[\r\n\]*.2. T5<int>::T5\\(int\\) at .*\[\r\n\]*.3. T5<int>::T5\\((T5<int> const|const T5<int>) ?&\\) at .*\[\r\n\]*> $" {
c906108c 113 gdb_test "0" \
a9e2e984 114 "canceled" \
c906108c
SS
115 "constructor breakpoint (obsolete format!)"
116 }
1bc05c3a 117 -re ".0. cancel\[\r\n\]*.1. all\[\r\n\]*.2. T5<int>::T5\\((T5<int> const|const T5<int>) ?&\\) at .*templates.cc:.*\[\r\n\]*.3. T5<int>::T5\\(int\\) at .*templates.cc:.*\[\r\n\]*> $" {
c906108c 118 gdb_test "0" \
a9e2e984 119 "canceled" \
c906108c
SS
120 "constructor breakpoint"
121 }
5330f2db
DC
122 -re "0. cancel.*\[\r\n\]*.1. all.*\[\r\n\]*.2. T5 at .*\[\r\n\]*.3. T5 at .*\[\r\n\]*> $" {
123 setup_kfail "gdb/1062" "*-*-*"
124 gdb_test "0" \
125 "nonsense intended to insure that this test fails" \
126 "constructor breakpoint"
127 }
760f6330
MS
128 -re ".*\n> $" {
129 gdb_test "0" \
130 "nonsense intended to insure that this test fails" \
131 "constructor breakpoint (bad menu choices)"
132 }
c906108c
SS
133 }
134
a0b3c4fd
JM
135# See CLLbs14792
136 if {$hp_aCC_compiler} {setup_xfail hppa*-*-* CLLbs14792}
5330f2db
DC
137
138 gdb_test_multiple "break T5<int>::~T5" "destructor_breakpoint" {
139 -re "Breakpoint.*at.* file .*${testfile}.cc, line.*$gdb_prompt $"
140 {
141 pass "destructor breakpoint"
142 }
143 -re "the class `T5<int>' does not have destructor defined\r\nHint: try 'T5<int>::~T5<TAB> or 'T5<int>::~T5<ESC-\\?>\r\n\\(Note leading single quote.\\)\r\n$gdb_prompt $"
144 {
145 kfail "gdb/1112" "destructor breakpoint"
146 }
147 }
c906108c
SS
148
149 gdb_test "break T5<int>::value" \
150 "Breakpoint.*at.* file .*${testfile}.cc, line.*" \
151 "value method breakpoint"
152
945a118d
JG
153 set bp_location [gdb_get_line_number \
154 "set breakpoint on a line with no real code"]
155 gdb_test "break ${testfile}.cc:${bp_location}" \
156 "Breakpoint.*at.* file .*${testfile}.cc, line.*(2 locations).*" \
157 "breakpoint on a line with no real code"
c906108c
SS
158 delete_breakpoints
159}
160
161#
162# Test calling of template methods.
163#
164
165proc test_template_calls {} {
166 global gdb_prompt
a0b3c4fd 167 global hp_aCC_compiler
c906108c
SS
168
169 if [target_info exists gdb,cannot_call_functions] {
170 setup_xfail "*-*-*" 2416
171 fail "This target can not call functions"
172 return
173 }
174
a0b3c4fd 175 if {!$hp_aCC_compiler} {setup_xfail hppa*-*-*}
f8d3bf8f
MS
176 gdb_test_multiple "print t5i.value()" "print t5i.value()" {
177 -re ".* = 2\[\r\n\]*$gdb_prompt $" {
178 pass "print t5i.value()"
179 }
c906108c
SS
180 -re "Cannot invoke functions on this machine.*$gdb_prompt $" {
181 fail "print t5i.value()"
182 }
a0b3c4fd
JM
183 -re "Cannot resolve .* to any overloaded instance.*$gdb_prompt $" {
184 setup_xfail hppa*-*-* CLLbs16899
185 xfail "print t5i.value"
186 }
c906108c
SS
187 }
188}
189
3fe8f3b3
KS
190proc test_template_typedef {} {
191
192 gdb_test "print intBazOne::baz" ".*baz\\(int, int\\)>" \
193 "print method of template typedef"
194
195 gdb_test "print intBazOne::~Baz" ".*~Baz(\\(\\))?>" \
196 "print destructor of template typedef"
197}
c906108c
SS
198
199proc do_tests {} {
c906108c
SS
200 global subdir
201 global objdir
202 global srcdir
203 global binfile
204 global gdb_prompt
c906108c 205
c906108c
SS
206
207 # Start with a fresh gdb.
208
209 gdb_exit
210 gdb_start
211 gdb_reinitialize_dir $srcdir/$subdir
212 gdb_load $binfile
213
eae06beb
JB
214 # Change multiple-symbols to "ask" in order to get the multiple-choice
215 # menu when breaking on overloaded methods.
216 gdb_test "set multiple-symbols ask" ""
217
40f235b7 218 runto_main
c906108c
SS
219
220 test_ptype_of_templates
221 test_template_breakpoints
3fe8f3b3 222 test_template_typedef
c906108c
SS
223
224 if [ runto_main] {
225 test_template_calls
226 }
227}
228
229do_tests
230
a0b3c4fd
JM
231
232# More tests for different kinds of template parameters,
233# templates with partial specializations, nested templates, etc.
234# These have been tested only with HP aCC. They probably won't
235# work with other compilers because of differences in mangling
236# schemes.
237# Added by Satish Pai <pai@apollo.hp.com> 1997-09-25
e6d71bf3
DB
238# As of 2000-06-03, C++ support has been improved to the point that g++ can
239# pass all of theses, excluding what appears to be one that exposes a stabs bug. - djb
a0b3c4fd 240
e6d71bf3
DB
241# I don't know how HP could be passing these tests without this. They
242# weren't breakpointing past a point where the below expressions were
243# initialized in the actual source. - djb
244
f8d3bf8f
MS
245gdb_test "b 770" \
246 "Breakpoint .* at .*, line 770."
a0b3c4fd 247
f8d3bf8f
MS
248gdb_test "c" \
249 "Continuing.*Breakpoint .*" \
250 "continue to line 770"
251
252gdb_test "print fint" \
253 "\\$\[0-9\]* = \\{x = 0, t = 0\\}"
254
255gdb_test "print fvpchar" \
256 "\\$\[0-9\]* = \\{x = 0, t = 0x0\\}"
a0b3c4fd
JM
257
258# Template Foo<T>
259
dd14ab43
DC
260# Neither stabs nor DWARF-2 contains type information about templates
261# (as opposed to instantiations of templates), so in those
262# circumstances we expect GDB to not find a symbol. HP has a debug
263# format that contains more info, though, so it's also correct to
264# print out template info. (This affects several subsequent tests as
265# well.)
266
267# NOTE: carlton/2003-02-26: However, because of a bug in the way GDB
268# handles nested types, we don't get this right in the DWARF-2 case.
269
f8d3bf8f
MS
270gdb_test_multiple "ptype Foo" "ptype Foo" {
271 -re "type = template <(class |)T> (class |)Foo \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\ntemplate instantiations:\r\n\[ \t\]*(class |)Foo<volatile char \\*>\r\n\[ \t\]*(class |)Foo<char>\r\n\[ \t\]*(class |)Foo<int>\r\n$gdb_prompt $" {
272 pass "ptype Foo"
273 }
274 -re "type = template <(class |)T> (class |)Foo \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\n$gdb_prompt $" {
275 xfail "ptype Foo"
276 }
277 -re "type = class Foo<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int foo\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
278 # GCC 3.1, DWARF-2 output.
279 kfail "gdb/57" "ptype Foo"
280 }
281 -re "No symbol \"Foo\" in current context.\r\n$gdb_prompt $" {
282 # GCC 2.95.3, stabs+ output.
283 pass "ptype Foo"
284 }
a0b3c4fd 285}
f8d3bf8f 286
dd14ab43 287# -re "type = class Foo<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int foo(int, int);\r\n\\}\r\n$gdb_prompt $"
a0b3c4fd
JM
288
289# ptype Foo<int>
290
f8d3bf8f
MS
291gdb_test_multiple "ptype fint" "ptype fint" {
292 -re "type = (class |)Foo<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int foo\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
293 pass "ptype fint"
294 }
295 -re "type = (class |)Foo<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int foo\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
296 pass "ptype fint"
297 }
a0b3c4fd
JM
298}
299
300# ptype Foo<char>
301
f8d3bf8f
MS
302gdb_test_multiple "ptype fchar" "ptype fchar" {
303 -re "type = (class |)Foo<char> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*.*char foo\\(int, char\\);\r\n\\}\r\n$gdb_prompt $" {
304 pass "ptype fchar"
305 }
306 -re "type = (class |)Foo<char> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*char foo\\(int, char\\);.*\r\n\\}\r\n$gdb_prompt $" {
307 pass "ptype fchar"
308 }
a0b3c4fd
JM
309}
310
311# ptype Foo<volatile char *>
312
f8d3bf8f
MS
313gdb_test_multiple "ptype fvpchar" "ptype fvpchar" {
314 -re "type = (class |)Foo<volatile char ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*char.*\\*t;\r\n\r\n\[ \t\]*.*char \\* foo\\(int,.*char.*\\*\\);\r\n\\}\r\n$gdb_prompt $" {
315 pass "ptype fvpchar"
316 }
317 -re "type = (class |)Foo<volatile char ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*char.*\\*t;\r\n\r\n\[ \t\]*.*char \\* foo\\(int,.*char.*\\*\\);.*\r\n\\}\r\n$gdb_prompt $" {
318 pass "ptype fvpchar"
319 }
320 -re "type = (class |)Foo<char volatile ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*char.*\\*t;\r\n\r\n\[ \t\]*.*char \\* foo\\(int,.*char.*\\*\\);\r\n\\}\r\n$gdb_prompt $" {
321 kfail "gdb/1512" "ptype fvpchar"
322 }
a0b3c4fd
JM
323}
324
325# print a function from Foo<volatile char *>
326
0b71dc91
DC
327# This test is sensitive to whitespace matching, so we'll do it twice,
328# varying the spacing, because of PR gdb/33.
329
f8d3bf8f
MS
330gdb_test_multiple "print Foo<volatile char *>::foo" "print Foo<volatile char *>::foo" {
331 -re "\\$\[0-9\]* = \\{.*char \\*\\((class |)Foo<(volatile char|char volatile) ?\\*> \\*(| const), int, .*char \\*\\)\\} $hex <Foo<.*char.*\\*>::foo\\(int, .*char.*\\*\\)>\r\n$gdb_prompt $" {
332 pass "print Foo<volatile char *>::foo"
333 }
334 -re "No symbol \"Foo<volatile char \\*>\" in current context.\r\n$gdb_prompt $" {
71c25dea
TT
335 # This used to be a kfail gdb/33 and then kfail gdb/931.
336 fail "print Foo<volatile char *>::foo"
85ca1584 337 }
0b71dc91
DC
338}
339
f8d3bf8f
MS
340gdb_test_multiple "print Foo<volatile char*>::foo" "print Foo<volatile char*>::foo" {
341 -re "\\$\[0-9\]* = \\{.*char \\*\\((class |)Foo<(volatile char|char volatile) ?\\*> \\*(| const), int, .*char \\*\\)\\} $hex <Foo<.*char.*\\*>::foo\\(int, .*char.*\\*\\)>\r\n$gdb_prompt $" {
342 pass "print Foo<volatile char*>::foo"
343 }
344 -re "No symbol \"Foo<volatile char\\*>\" in current context.\r\n$gdb_prompt $" {
71c25dea
TT
345 # This used to be a kfail gdb/33 and then kfail gdb/931.
346 fail "print Foo<volatile char*>::foo"
85ca1584 347 }
a0b3c4fd
JM
348}
349
350# Template Bar<T, int>
351
e6d71bf3 352# same as Foo for g++
f8d3bf8f
MS
353gdb_test_multiple "ptype Bar" "ptype Bar" {
354 -re "type = template <(class |)T, (class |)sz> (class |)Bar \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\ntemplate instantiations:\r\n\[ \t\]*(class |)Bar<int,(\\(int\\)|)1>\r\n\[ \t\]*(class |)Bar<int,(\\(int\\)|)33>\r\n$gdb_prompt $" {
355 pass "ptype Bar"
356 }
357 -re "type = <(class |)T, (class |)sz> (class |)Bar \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\n$gdb_prompt $" {
358 xfail "ptype Bar"
359 }
360 -re "ptype Bar\r\ntype = class Bar<int, ?33> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int bar\\(int, int\\);\r\n}\r\n$gdb_prompt $" {
361 # GCC 3.1, DWARF-2 output.
362 kfail "gdb/57" "ptype Bar"
363 }
364 -re "No symbol \"Bar\" in current context.\r\n$gdb_prompt $" {
365 # GCC 2.95.3, stabs+ output.
366 pass "ptype Bar"
367 }
a0b3c4fd
JM
368}
369
370
371# ptype Bar<int,33>
5a2a0a20 372
f8d3bf8f
MS
373gdb_test_multiple "ptype bint" "ptype bint" {
374 -re "type = (class |)Bar<int, ?(\\(int\\)|)33> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int bar\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
375 pass "ptype bint"
376 }
377 -re "type = (class |)Bar<int,(\\(int\\)|)33> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int bar\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
378 pass "ptype bint"
379 }
a0b3c4fd
JM
380}
381
382# ptype Bar<int, (4>3)>
383
f8d3bf8f
MS
384gdb_test_multiple "ptype bint2" "ptype bint2" {
385 -re "type = (class |)Bar<int, ?(\\(int\\)|)1> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int bar\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
386 pass "ptype bint2"
387 }
388 -re "type = (class |)Bar<int,(\\(int\\)|)1> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int bar\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
389 pass "ptype bint2"
390 }
a0b3c4fd
JM
391}
392
393# Template Baz<T, char>
394
e6d71bf3 395# Same as Foo, for g++
f8d3bf8f
MS
396gdb_test_multiple "ptype Baz" "ptype Baz" {
397 -re "type = template <(class |)T, ?(class |)sz> (class |)Baz \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\ntemplate instantiations:\r\n\[ \t\]*(class |)Baz<char,(\\(char\\)|)97>\r\n\[ \t\]*(class |)Baz<int,(\\(char\\)|)115>\r\n$gdb_prompt $" {
398 pass "ptype Baz"
399 }
400 -re "type = <(class |)T, ?(class |)sz> (class |)Baz \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\n$gdb_prompt $" {
401 xfail "ptype Baz"
402 }
403 -re "type = class Baz<int, ?'s'> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int baz\\(int, int\\);\r\n}\r\n$gdb_prompt $" {
404 # GCC 3.1, DWARF-2 output.
405 kfail "gdb/57" "ptype Baz"
406 }
407 -re "type = class Baz<int, ?(\\(char\\))?115> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int baz\\(int, int\\);\r\n}\r\n$gdb_prompt $" {
408 # GCC 3.x, DWARF-2 output, running into gdb/57 and gdb/1512.
409 kfail "gdb/57" "ptype Baz"
410 }
411 -re "No symbol \"Baz\" in current context.\r\n$gdb_prompt $" {
412 # GCC 2.95.3, stabs+ output.
413 pass "ptype Baz"
414 }
a0b3c4fd
JM
415}
416
417
418# ptype Baz<int, 's'>
419
f8d3bf8f
MS
420gdb_test_multiple "ptype bazint" "ptype bazint" {
421 -re "type = (class |)Baz<int, ?(\\(char\\)|)(115|\\'s\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int baz\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
422 pass "ptype bazint"
423 }
424 -re "type = (class |)Baz<int,(\\(char\\)|)(115|\\'s\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int baz\\(int, int\\).*;\r\n\\}\r\n$gdb_prompt $" {
425 pass "ptype bazint"
426 }
a0b3c4fd
JM
427}
428
429# ptype Baz<char, 'a'>
430
f8d3bf8f
MS
431gdb_test_multiple "ptype bazint2" "ptype bazint2" {
432 -re "type = (class |)Baz<char, ?(\\(char\\)|)(97|\\'a\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*.*char baz\\(int, char\\);\r\n\\}\r\n$gdb_prompt $" {
433 pass "ptype bazint2"
434 }
435 -re "type = (class |)Baz<char,(\\(char\\)|)(97|\\'a\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*char baz\\(int, char\\);.*\r\n\\}\r\n$gdb_prompt $" {
436 pass "ptype bazint2"
437 }
a0b3c4fd
JM
438}
439
440# Template Qux<T, int (*f)(int) >
e6d71bf3 441# Same as Foo for g++
f8d3bf8f
MS
442gdb_test_multiple "ptype Qux" "ptype Qux" {
443 -re "type = template <(class |)T, ?(class |)sz> (class |)Qux \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}\r\ntemplate instantiations:\r\n\[ \t\]*(class |)Qux<int,&string>\r\n\[ \t\]*(class |)Qux<char,&string>\r\n$gdb_prompt $" {
444 pass "ptype Qux"
445 }
446 -re ".*type = template <(class |)T.*, ?(class |)sz> (class |)Qux \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*T t;\r\n\\}.*$gdb_prompt $" {
447 pass "ptype Qux"
448 }
449 -re "type = class Qux<char, ?&string> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*char qux\\(int, char\\);\r\n}\r\n$gdb_prompt $" {
450 # GCC 3.1, DWARF-2 output.
451 kfail "gdb/57" "ptype Qux"
452 }
453 -re "type = class Qux<char, ?&\\(string\\)> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*char qux\\(int, char\\);\r\n}\r\n$gdb_prompt $" {
454 # GCC 3.x, DWARF-2 output; gdb/57 + gdb/1512.
455 kfail "gdb/57" "ptype Qux"
456 }
457 -re "No symbol \"Qux\" in current context.\r\n$gdb_prompt $" {
458 # GCC 2.95.3, stabs+ output.
459 pass "ptype Qux"
460 }
a0b3c4fd
JM
461}
462
463# pt Qux<int,&string>
464
f8d3bf8f
MS
465gdb_test_multiple "ptype quxint" "ptype quxint" {
466 -re "type = class Qux<int, ?& ?string> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int qux\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
467 pass "ptype quxint"
468 }
469 -re "type = class Qux<int, ?& ?string> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int qux\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
470 pass "ptype quxint"
471 }
472 -re "type = class Qux<int, ?\\(char ?\\*\\)\\(& ?\\(?string\\)?\\)> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int qux\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
473 pass "ptype quxint"
474 }
475 -re "type = class Qux<int, ?& ?\\(string\\)> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int qux\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
476 kfail "gdb/1512" "ptype quxint"
477 }
a0b3c4fd
JM
478}
479
a0b3c4fd
JM
480
481# Template Spec<T1, T2>
482
e6d71bf3 483# Same as Foo for g++
f8d3bf8f
MS
484gdb_test_multiple "ptype Spec" "ptype Spec" {
485 -re "type = template <(class |)T1, (class |)T2> (class |)Spec \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\\}\r\ntemplate instantiations:\r\n\[ \t\]*(class |)Spec<int,int \\*>\r\n\[ \t\]*(class |)Spec<int,char>\r\n$gdb_prompt $" {
486 pass "ptype Spec"
487 }
488 -re "type = <(class |)T1, (class |)T2> (class |)Spec \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\\}\r\n$gdb_prompt $" {
489 xfail "ptype Spec"
490 }
491 -re "type = class Spec<int, ?char> {\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\r\n\[ \t\]*int spec\\(char\\);\r\n}\r\n$gdb_prompt $" {
492 # GCC 3.1, DWARF-2 output.
493 kfail "gdb/57" "ptype Spec"
494 }
495 -re "No symbol \"Spec\" in current context.\r\n$gdb_prompt $" {
496 # GCC 2.95.3, stabs+ output.
497 pass "ptype Spec"
498 }
a0b3c4fd
JM
499}
500
501# pt Spec<char,0>
502
f8d3bf8f
MS
503gdb_test_multiple "ptype siip" "ptype siip" {
504 -re "type = class Spec<int, ?int ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\r\n\[ \t\]*.*int spec\\(int ?\\*\\);\r\n\\}\r\n$gdb_prompt $" {
505 pass "ptype siip"
506 }
507 -re "type = class Spec<int,int ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\r\n\[ \t\]*int spec\\(int ?\\*\\);.*\r\n\\}\r\n$gdb_prompt $" {
508 pass "ptype siip"
509 }
a0b3c4fd
JM
510}
511
512# pt Garply<int>
513
f8d3bf8f
MS
514gdb_test_multiple "ptype Garply<int>" "ptype Garply<int>" {
515 -re "type = class Garply<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int garply\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" {
516 pass "ptype Garply<int>"
517 }
518 -re "type = class Garply<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*int garply\\(int, int\\);.*\r\n\\}\r\n$gdb_prompt $" {
519 pass "ptype Garply<int>"
520 }
a0b3c4fd
JM
521}
522
523# ptype of nested template name
524
f8d3bf8f
MS
525gdb_test_multiple "ptype Garply<Garply<char> >" "ptype Garply<Garply<char> >" {
526 -re "type = (class |)Garply<Garply<char> > \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*(class |)Garply<char> t;\r\n\r\n\[ \t\]*.*(class |)Garply<char> garply\\(int, (class |)Garply<char>\\);\r\n\\}\r\n$gdb_prompt $" {
527 pass "ptype Garply<Garply<char> >"
528 }
529 -re "type = (class |)Garply<Garply<char> > \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*(class |)Garply<char> t;\r\n\r\n\[ \t\]*(class |)Garply<char> garply\\(int, (class |)Garply<char>\\);.*\r\n\\}\r\n$gdb_prompt $" {
530 pass "ptype Garply<Garply<char> >"
531 }
a0b3c4fd
JM
532}
533
534# print out a function from a nested template name
535
f8d3bf8f
MS
536gdb_test "print Garply<Garply<char> >::garply" \
537 "\\$\[0-9\]* = \\{(class |)Garply<char> \\((class |)Garply<Garply<char> > \\*(| const), int, (class |)Garply<char>\\)\\} $hex <Garply<Garply<char>\[ \t\]*>::garply\\(int, (class |)Garply<char>\\)>" \
538 "print Garply<Garply<char> >::garply"
a0b3c4fd 539
e6d71bf3
DB
540# djb - 06-03-2000
541# Now should work fine
b598bfda
DJ
542gdb_test "break Garply<Garply<char> >::garply" \
543 "Breakpoint \[0-9\]* at $hex: file .*templates.cc, line.*"
This page took 0.967353 seconds and 4 git commands to generate.