]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.c++/templates.exp
* gdb.c++/classes.exp: Add test for static member function.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.c++ / templates.exp
CommitLineData
b6ba6518
KB
1# Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000
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 {
3b2a7ae5 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 ?&\\);${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" }
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 ?&\\);)|(${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 }
64 -re ".*$gdb_prompt $" {
65 fail "ptype T5<int>"
66 }
67 timeout {
68 fail "ptype T5<int> (timeout)"
69 }
70 }
71
72 send_gdb "ptype t5i\n"
73 gdb_expect {
3b2a7ae5
MS
74 -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" }
75 -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" }
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 long\\);${ws}static void delete \\(void ?\\*\\);${ws}int value \\((void|)\\);${ws}\\}\r\n$gdb_prompt $" { pass "ptype t5i<int> -- new with unsigned long" }
eef747c0 77 -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
78 pass "ptype t5i"
79 }
3b2a7ae5 80 -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
81 pass "ptype t5i"
82 }
3b2a7ae5 83 -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
84 pass "ptype t5i (obsolescent gcc or gdb)"
85 }
86 -re ".*$gdb_prompt $" {
87 fail "ptype t5i"
88 }
89 timeout {
90 fail "ptype t5i (timeout)"
91 }
92 }
93}
94
95#
96# Test breakpoint setting on template methods.
97#
98
99proc test_template_breakpoints {} {
100 global gdb_prompt
101 global testfile
102 global srcdir
a0b3c4fd 103 global hp_aCC_compiler
c906108c
SS
104
105 send_gdb "break T5<int>::T5\n"
106 gdb_expect {
eef747c0 107 -re "0. cancel.*\[\r\n\]*.1. all.*\[\r\n\]*.2. T5<int>::T5\\(int\\) at .*\[\r\n\]*.3. T5<int>::T5\\(T5<int> const ?&\\) at .*\[\r\n\]*> $" {
c906108c 108 gdb_test "0" \
a9e2e984 109 "canceled" \
c906108c
SS
110 "constructor breakpoint (obsolete format!)"
111 }
eef747c0 112 -re ".0. cancel\[\r\n\]*.1. all\[\r\n\]*.2. T5<int>::T5\\(T5<int> const ?&\\) at .*templates.cc:.*\[\r\n\]*.3. T5<int>::T5\\(int\\) at .*templates.cc:.*\[\r\n\]*> $" {
c906108c 113 gdb_test "0" \
a9e2e984 114 "canceled" \
c906108c
SS
115 "constructor breakpoint"
116 }
760f6330
MS
117 -re ".*\n> $" {
118 gdb_test "0" \
119 "nonsense intended to insure that this test fails" \
120 "constructor breakpoint (bad menu choices)"
121 }
c906108c
SS
122 -re ".*$gdb_prompt $" { fail "constructor breakpoint" }
123 default { fail "constructor breakpoint (timeout)" }
124 }
125
a0b3c4fd
JM
126# See CLLbs14792
127 if {$hp_aCC_compiler} {setup_xfail hppa*-*-* CLLbs14792}
128 gdb_test "break T5<int>::~T5" \
c906108c
SS
129 "Breakpoint.*at.* file .*${testfile}.cc, line.*" \
130 "destructor breakpoint"
131
132 gdb_test "break T5<int>::value" \
133 "Breakpoint.*at.* file .*${testfile}.cc, line.*" \
134 "value method breakpoint"
135
136 delete_breakpoints
137}
138
139#
140# Test calling of template methods.
141#
142
143proc test_template_calls {} {
144 global gdb_prompt
a0b3c4fd 145 global hp_aCC_compiler
c906108c
SS
146
147 if [target_info exists gdb,cannot_call_functions] {
148 setup_xfail "*-*-*" 2416
149 fail "This target can not call functions"
150 return
151 }
152
a0b3c4fd 153 if {!$hp_aCC_compiler} {setup_xfail hppa*-*-*}
c906108c
SS
154 send_gdb "print t5i.value()\n"
155 gdb_expect {
156 -re ".* = 2\[\r\n\]*$gdb_prompt $" { pass "print t5i.value()" }
157 -re "Cannot invoke functions on this machine.*$gdb_prompt $" {
158 fail "print t5i.value()"
159 }
a0b3c4fd
JM
160 -re "Cannot resolve .* to any overloaded instance.*$gdb_prompt $" {
161 setup_xfail hppa*-*-* CLLbs16899
162 xfail "print t5i.value"
163 }
c906108c 164 -re ".*$gdb_prompt $" { fail "print t5i.value()" }
a0b3c4fd 165 timeout { fail "print t5i.value() (timeout)" }
c906108c
SS
166 }
167}
168
169
170proc do_tests {} {
171 global prms_id
172 global bug_id
173 global subdir
174 global objdir
175 global srcdir
176 global binfile
177 global gdb_prompt
178 global supports_template_debugging
179
180 set prms_id 0
181 set bug_id 0
182
183 # Start with a fresh gdb.
184
185 gdb_exit
186 gdb_start
187 gdb_reinitialize_dir $srcdir/$subdir
188 gdb_load $binfile
189
190 if { !$supports_template_debugging } {
191 warning "compiler lacks debugging info for templates; tests suppressed." 0
192 return
193 }
194
195 # Get the debug format for the compiled test case. If that
196 # format is DWARF 1 then just skip all the tests since none of
197 # them will pass.
198
199 if [ runto_main] then {
200 get_debug_format
201 if [ setup_xfail_format "DWARF 1" ] then {
202 fail "C++ tests skipped due to limited C++ support in DWARF 1 debug format"
203 return
204 }
205 clear_xfail "*-*-*"
206 }
207
208 test_ptype_of_templates
209 test_template_breakpoints
210
211 if [ runto_main] {
212 test_template_calls
213 }
214}
215
216do_tests
217
a0b3c4fd
JM
218
219# More tests for different kinds of template parameters,
220# templates with partial specializations, nested templates, etc.
221# These have been tested only with HP aCC. They probably won't
222# work with other compilers because of differences in mangling
223# schemes.
224# Added by Satish Pai <pai@apollo.hp.com> 1997-09-25
e6d71bf3
DB
225# As of 2000-06-03, C++ support has been improved to the point that g++ can
226# pass all of theses, excluding what appears to be one that exposes a stabs bug. - djb
a0b3c4fd 227
e6d71bf3
DB
228# I don't know how HP could be passing these tests without this. They
229# weren't breakpointing past a point where the below expressions were
230# initialized in the actual source. - djb
231
232send_gdb "b 770\n"
233gdb_expect {
234 -re ".*$gdb_prompt $"
235}
236send_gdb "c\n"
237gdb_expect {
238 -re ".*$gdb_prompt $"
239}
a0b3c4fd
JM
240send_gdb "print fint\n"
241gdb_expect {
242 -re "\\$\[0-9\]* = \\{x = 0, t = 0\\}\r\n$gdb_prompt $" { pass "print fint" }
243 -re "$gdb_prompt $" { fail "print fint" }
244 timeout { fail "(timeout) print fint" }
245}
246
247send_gdb "print fvpchar\n"
248gdb_expect {
249 -re "\\$\[0-9\]* = \\{x = 0, t = 0x0\\}\r\n$gdb_prompt $" { pass "print fvpchar" }
250 -re "$gdb_prompt $" { fail "print fvpchar" }
251 timeout { fail "(timeout) print fvpchar" }
252}
253
254# Template Foo<T>
255
256setup_xfail hppa2.0w-*-* CLLbs16092
e6d71bf3
DB
257# g++ can't do the template instantiation in debug info trick, so we
258# fail this because it's not a real type.
259if {!$hp_aCC_compiler} { setup_xfail *-*-* }
a0b3c4fd
JM
260send_gdb "ptype Foo\n"
261gdb_expect {
262 -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" }
263 -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" }
264 -re "$gdb_prompt $" { fail "ptype Foo" }
265 timeout { fail "(timeout) ptype Foo" }
266}
267
268# ptype Foo<int>
269
270send_gdb "ptype fint\n"
271gdb_expect {
e6d71bf3 272 -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
273 -re "$gdb_prompt $" { fail "ptype fint" }
274 timeout { fail "(timeout) ptype fint" }
275}
276
277# ptype Foo<char>
278
279send_gdb "ptype fchar\n"
280gdb_expect {
e6d71bf3 281 -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
282 -re "$gdb_prompt $" { fail "ptype fchar" }
283 timeout { fail "(timeout) ptype fchar" }
284}
285
286# ptype Foo<volatile char *>
287
288send_gdb "ptype fvpchar\n"
289gdb_expect {
e6d71bf3 290 -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
291 -re "$gdb_prompt $" { fail "ptype fvpchar" }
292 timeout { fail "(timeout) ptype fvpchar" }
293}
294
295# print a function from Foo<volatile char *>
296
297send_gdb "print Foo<volatile char *>::foo\n"
298gdb_expect {
e6d71bf3 299 -re "\\$\[0-9\]* = \\{.*char \\*\\((class |)Foo<volatile char \\*> \\*, int, .*char \\*\\)\\} $hex <Foo<.*char.*\\*>::foo\\(int, .*char.*\\*\\)>\r\n$gdb_prompt $" { pass "print Foo<volatile char *>::foo" }
a0b3c4fd
JM
300 -re "$gdb_prompt $" { fail "print Foo<volatile char *>::foo" }
301 timeout { fail "(timeout) print Foo<volatile char *>::foo" }
302}
303
304# Template Bar<T, int>
305
306setup_xfail hppa2.0w-*-* CLLbs16092
e6d71bf3
DB
307# same as Foo for g++
308if {!$hp_aCC_compiler} { setup_xfail *-*-* }
a0b3c4fd
JM
309send_gdb "ptype Bar\n"
310gdb_expect {
311 -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" }
312 -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" }
313 -re "$gdb_prompt $" { fail "ptype Bar" }
314 timeout { fail "(timeout) ptype Bar" }
315}
316
317
318# ptype Bar<int,33>
e6d71bf3
DB
319# stabs screws this test royally.
320# It thinks it has a badly mangled name.
321# I blame stabs, the other formats get it right. -djb
322get_debug_format
323setup_xfail_format "stabs"
a0b3c4fd
JM
324send_gdb "ptype bint\n"
325gdb_expect {
e6d71bf3 326 -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
327 -re "$gdb_prompt $" { fail "ptype bint" }
328 timeout { fail "(timeout) ptype bint" }
329}
330
331# ptype Bar<int, (4>3)>
332
333send_gdb "ptype bint2\n"
334gdb_expect {
e6d71bf3 335 -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
336 -re "$gdb_prompt $" { fail "ptype bint2" }
337 timeout { fail "(timeout) ptype bint2" }
338}
339
340# Template Baz<T, char>
341
342setup_xfail hppa2.0w-*-* CLLbs16092
e6d71bf3
DB
343# Same as Foo, for g++
344if {!$hp_aCC_compiler} { setup_xfail *-*-* }
a0b3c4fd
JM
345send_gdb "ptype Baz\n"
346gdb_expect {
347 -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" }
348 -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" }
349 -re "$gdb_prompt $" { fail "ptype Baz" }
350 timeout { fail "(timeout) ptype Baz" }
351}
352
353
354# ptype Baz<int, 's'>
355
356send_gdb "ptype bazint\n"
357gdb_expect {
e6d71bf3 358 -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
359 -re "$gdb_prompt $" { fail "ptype bazint" }
360 timeout { fail "(timeout) ptype bazint" }
361}
362
363# ptype Baz<char, 'a'>
364
365send_gdb "ptype bazint2\n"
366gdb_expect {
e6d71bf3 367 -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
368 -re "$gdb_prompt $" { fail "ptype bazint2" }
369 timeout { fail "(timeout) ptype bazint2" }
370}
371
372# Template Qux<T, int (*f)(int) >
e6d71bf3
DB
373# Same as Foo for g++
374if {!$hp_aCC_compiler} {setup_xfail *-*-*}
a0b3c4fd
JM
375send_gdb "ptype Qux\n"
376gdb_expect {
377 -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" }
378 -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" }
379 -re "$gdb_prompt $" { fail "ptype Qux" }
380 timeout { fail "(timeout) ptype Qux" }
381}
382
383# pt Qux<int,&string>
384
385send_gdb "ptype quxint\n"
386gdb_expect {
e6d71bf3 387 -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
388 -re "$gdb_prompt $" { fail "ptype quxint" }
389 timeout { fail "(timeout) ptype quxint" }
390}
391
392# pt Qux<char,0>
393
394# commented out this as quxint2 declaration was commented out in
395# templates.exp -- ovidiu
396# send_gdb "ptype quxint2\n"
397# gdb_expect {
398# -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" }
399# -re "$gdb_prompt $" { fail "ptype quxint2" }
400# timeout { fail "(timeout) ptype quxint2" }
401# }
402
403# Template Spec<T1, T2>
404
405setup_xfail hppa2.0w-*-* CLLbs16092
e6d71bf3
DB
406# Same as Foo for g++
407if {!$hp_aCC_compiler} { setup_xfail *-*-* }
a0b3c4fd
JM
408send_gdb "ptype Spec\n"
409gdb_expect {
410 -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" }
411 -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" }
412 -re "$gdb_prompt $" { fail "ptype Spec" }
413 timeout { fail "(timeout) ptype Spec" }
414}
415
416# pt Spec<char,0>
417
418send_gdb "ptype siip\n"
419gdb_expect {
e6d71bf3 420 -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
421 -re "$gdb_prompt $" { fail "ptype siip" }
422 timeout { fail "(timeout) ptype siip" }
423}
424
425# pt Garply<int>
426
427send_gdb "ptype Garply<int>\n"
428gdb_expect {
e6d71bf3 429 -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
430 -re "$gdb_prompt $" { fail "ptype Garply<int>" }
431 timeout { fail "(timeout) ptype Garply<int>" }
432}
433
434# ptype of nested template name
435
436send_gdb "ptype Garply<Garply<char> >\n"
437gdb_expect {
e6d71bf3 438 -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
439 -re "$gdb_prompt $" { fail "ptype Garply<Garply<char> >" }
440 timeout { fail "(timeout) ptype Garply<Garply<char> >" }
441}
442
443# print out a function from a nested template name
444
445send_gdb "print Garply<Garply<char> >::garply\n"
446gdb_expect {
e6d71bf3 447 -re "\\$\[0-9\]* = \\{(class |)Garply<char> \\((class |)Garply<Garply<char> > \\*, 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
448 -re ".*$gdb_prompt $" { fail "print Garply<Garply<char> >::garply" }
449 timeout { fail "print Garply<Garply<char> >::garply (timeout)" }
450}
451
e6d71bf3
DB
452# djb - 06-03-2000
453# Now should work fine
454send_gdb "break Garply<Garply<char> >::garply\n"
455gdb_expect {
456 -re "Breakpoint \[0-9\]* at $hex: file .*templates.cc, line.*\r\n$gdb_prompt $" { pass "break Garply<Garply<char> >::garply" }
457 -re ".*$gdb_prompt $" { fail "break Garply<Garply<char> >::garply" }
458 timeout { fail "break Garply<Garply<char> >::garply (timeout)" }
459}