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