* gdb.c++/namespace.exp: Accept trailing const for 'this'.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.c++ / templates.exp
1 # Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2002
2 # Free Software Foundation, Inc.
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
23 set ws "\[\r\n\t \]+"
24
25 if $tracelevel then {
26 strace $tracelevel
27 }
28
29 if { [skip_cplus_tests] } { continue }
30
31 set testfile "templates"
32 set srcfile ${testfile}.cc
33 set binfile ${objdir}/${subdir}/${testfile}
34
35 # Create and source the file that provides information about the compiler
36 # used to compile the test case.
37 if [get_compiler_info ${binfile} "c++"] {
38 return -1
39 }
40 source ${binfile}.ci
41
42 if { [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
46 #
47 # Test printing of the types of templates.
48 #
49
50 proc test_ptype_of_templates {} {
51 global gdb_prompt
52 global ws
53
54 send_gdb "ptype T5<int>\n"
55 gdb_expect {
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 $" {
57 pass "ptype T5<int>"
58 }
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|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 $" {
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 {
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" }
77 -re "type = class T5<int> \{.*public:.*static int X;.*int x;.*int val;.*.*T5 \\(int\\);.*.*void ~T5 \\(int\\).*.*.*int value \\((void|)\\);.*\}.*$gdb_prompt $" {
78 pass "ptype t5i"
79 }
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|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 $" {
81 pass "ptype t5i"
82 }
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 $" {
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
99 proc test_template_breakpoints {} {
100 global gdb_prompt
101 global testfile
102 global srcdir
103 global hp_aCC_compiler
104
105 send_gdb "break T5<int>::T5\n"
106 gdb_expect {
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|const T5<int>) ?&\\) at .*\[\r\n\]*> $" {
108 gdb_test "0" \
109 "canceled" \
110 "constructor breakpoint (obsolete format!)"
111 }
112 -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\]*> $" {
113 gdb_test "0" \
114 "canceled" \
115 "constructor breakpoint"
116 }
117 -re ".*\n> $" {
118 gdb_test "0" \
119 "nonsense intended to insure that this test fails" \
120 "constructor breakpoint (bad menu choices)"
121 }
122 -re ".*$gdb_prompt $" { fail "constructor breakpoint" }
123 default { fail "constructor breakpoint (timeout)" }
124 }
125
126 # See CLLbs14792
127 if {$hp_aCC_compiler} {setup_xfail hppa*-*-* CLLbs14792}
128 gdb_test "break T5<int>::~T5" \
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
143 proc test_template_calls {} {
144 global gdb_prompt
145 global hp_aCC_compiler
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
153 if {!$hp_aCC_compiler} {setup_xfail hppa*-*-*}
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 }
160 -re "Cannot resolve .* to any overloaded instance.*$gdb_prompt $" {
161 setup_xfail hppa*-*-* CLLbs16899
162 xfail "print t5i.value"
163 }
164 -re ".*$gdb_prompt $" { fail "print t5i.value()" }
165 timeout { fail "print t5i.value() (timeout)" }
166 }
167 }
168
169
170 proc 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
216 do_tests
217
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
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
227
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
232 send_gdb "b 770\n"
233 gdb_expect {
234 -re ".*$gdb_prompt $"
235 }
236 send_gdb "c\n"
237 gdb_expect {
238 -re ".*$gdb_prompt $"
239 }
240 send_gdb "print fint\n"
241 gdb_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
247 send_gdb "print fvpchar\n"
248 gdb_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
256 setup_xfail hppa64-*-* CLLbs16092
257 # g++ can't do the template instantiation in debug info trick, so we
258 # fail this because it's not a real type.
259 if {!$hp_aCC_compiler} { setup_xfail *-*-* }
260 send_gdb "ptype Foo\n"
261 gdb_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
270 send_gdb "ptype fint\n"
271 gdb_expect {
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" }
273 -re "$gdb_prompt $" { fail "ptype fint" }
274 timeout { fail "(timeout) ptype fint" }
275 }
276
277 # ptype Foo<char>
278
279 send_gdb "ptype fchar\n"
280 gdb_expect {
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" }
282 -re "$gdb_prompt $" { fail "ptype fchar" }
283 timeout { fail "(timeout) ptype fchar" }
284 }
285
286 # ptype Foo<volatile char *>
287
288 send_gdb "ptype fvpchar\n"
289 gdb_expect {
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" }
291 -re "$gdb_prompt $" { fail "ptype fvpchar" }
292 timeout { fail "(timeout) ptype fvpchar" }
293 }
294
295 # print a function from Foo<volatile char *>
296
297 send_gdb "print Foo<volatile char *>::foo\n"
298 gdb_expect {
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" }
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
306 setup_xfail hppa64-*-* CLLbs16092
307 # same as Foo for g++
308 if {!$hp_aCC_compiler} { setup_xfail *-*-* }
309 send_gdb "ptype Bar\n"
310 gdb_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>
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
322 get_debug_format
323 setup_xfail_format "stabs"
324 send_gdb "ptype bint\n"
325 gdb_expect {
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" }
327 -re "$gdb_prompt $" { fail "ptype bint" }
328 timeout { fail "(timeout) ptype bint" }
329 }
330
331 # ptype Bar<int, (4>3)>
332
333 send_gdb "ptype bint2\n"
334 gdb_expect {
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" }
336 -re "$gdb_prompt $" { fail "ptype bint2" }
337 timeout { fail "(timeout) ptype bint2" }
338 }
339
340 # Template Baz<T, char>
341
342 setup_xfail hppa64-*-* CLLbs16092
343 # Same as Foo, for g++
344 if {!$hp_aCC_compiler} { setup_xfail *-*-* }
345 send_gdb "ptype Baz\n"
346 gdb_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
356 send_gdb "ptype bazint\n"
357 gdb_expect {
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" }
359 -re "$gdb_prompt $" { fail "ptype bazint" }
360 timeout { fail "(timeout) ptype bazint" }
361 }
362
363 # ptype Baz<char, 'a'>
364
365 send_gdb "ptype bazint2\n"
366 gdb_expect {
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" }
368 -re "$gdb_prompt $" { fail "ptype bazint2" }
369 timeout { fail "(timeout) ptype bazint2" }
370 }
371
372 # Template Qux<T, int (*f)(int) >
373 # Same as Foo for g++
374 if {!$hp_aCC_compiler} {setup_xfail *-*-*}
375 send_gdb "ptype Qux\n"
376 gdb_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
385 send_gdb "ptype quxint\n"
386 gdb_expect {
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" }
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
405 setup_xfail hppa64-*-* CLLbs16092
406 # Same as Foo for g++
407 if {!$hp_aCC_compiler} { setup_xfail *-*-* }
408 send_gdb "ptype Spec\n"
409 gdb_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
418 send_gdb "ptype siip\n"
419 gdb_expect {
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" }
421 -re "$gdb_prompt $" { fail "ptype siip" }
422 timeout { fail "(timeout) ptype siip" }
423 }
424
425 # pt Garply<int>
426
427 send_gdb "ptype Garply<int>\n"
428 gdb_expect {
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>" }
430 -re "$gdb_prompt $" { fail "ptype Garply<int>" }
431 timeout { fail "(timeout) ptype Garply<int>" }
432 }
433
434 # ptype of nested template name
435
436 send_gdb "ptype Garply<Garply<char> >\n"
437 gdb_expect {
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> >" }
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
445 send_gdb "print Garply<Garply<char> >::garply\n"
446 gdb_expect {
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" }
448 -re ".*$gdb_prompt $" { fail "print Garply<Garply<char> >::garply" }
449 timeout { fail "print Garply<Garply<char> >::garply (timeout)" }
450 }
451
452 # djb - 06-03-2000
453 # Now should work fine
454 send_gdb "break Garply<Garply<char> >::garply\n"
455 gdb_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 }
This page took 0.052731 seconds and 5 git commands to generate.