]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.c++/templates.exp
0ae878865feb5269401360bcef3d393cda15b325
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.c++ / templates.exp
1 # Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2002, 2003
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 "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 $" {
65 # This also triggers gdb/1113...
66 kfail "gdb/1111" "ptype T5<int>"
67 }
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 {
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" }
81 -re "type = class T5<int> \{.*public:.*static int X;.*int x;.*int val;.*.*T5 \\(int\\);.*.*void ~T5 \\(int\\).*.*.*int value \\((void|)\\);.*\}.*$gdb_prompt $" {
82 pass "ptype t5i"
83 }
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 $" {
85 pass "ptype t5i"
86 }
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 $" {
88 pass "ptype t5i (obsolescent gcc or gdb)"
89 }
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 $" {
91 # This also triggers gdb/1113...
92 kfail "gdb/1111" "ptype T5<int>"
93 }
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
107 proc test_template_breakpoints {} {
108 global gdb_prompt
109 global testfile
110 global srcdir
111 global hp_aCC_compiler
112
113 send_gdb "break T5<int>::T5\n"
114 gdb_expect {
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\]*> $" {
116 gdb_test "0" \
117 "canceled" \
118 "constructor breakpoint (obsolete format!)"
119 }
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\]*> $" {
121 gdb_test "0" \
122 "canceled" \
123 "constructor breakpoint"
124 }
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 }
131 -re ".*\n> $" {
132 gdb_test "0" \
133 "nonsense intended to insure that this test fails" \
134 "constructor breakpoint (bad menu choices)"
135 }
136 -re ".*$gdb_prompt $" { fail "constructor breakpoint" }
137 default { fail "constructor breakpoint (timeout)" }
138 }
139
140 # See CLLbs14792
141 if {$hp_aCC_compiler} {setup_xfail hppa*-*-* CLLbs14792}
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 }
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
165 proc test_template_calls {} {
166 global gdb_prompt
167 global hp_aCC_compiler
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
175 if {!$hp_aCC_compiler} {setup_xfail hppa*-*-*}
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 }
182 -re "Cannot resolve .* to any overloaded instance.*$gdb_prompt $" {
183 setup_xfail hppa*-*-* CLLbs16899
184 xfail "print t5i.value"
185 }
186 -re ".*$gdb_prompt $" { fail "print t5i.value()" }
187 timeout { fail "print t5i.value() (timeout)" }
188 }
189 }
190
191
192 proc 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
217 runto_main
218
219 test_ptype_of_templates
220 test_template_breakpoints
221
222 if [ runto_main] {
223 test_template_calls
224 }
225 }
226
227 do_tests
228
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
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
238
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
243 send_gdb "b 770\n"
244 gdb_expect {
245 -re ".*$gdb_prompt $"
246 }
247 send_gdb "c\n"
248 gdb_expect {
249 -re ".*$gdb_prompt $"
250 }
251 send_gdb "print fint\n"
252 gdb_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
258 send_gdb "print fvpchar\n"
259 gdb_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
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
277 send_gdb "ptype Foo\n"
278 gdb_expect {
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" }
289 }
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 $"
291
292 # ptype Foo<int>
293
294 send_gdb "ptype fint\n"
295 gdb_expect {
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" }
297 -re "$gdb_prompt $" { fail "ptype fint" }
298 timeout { fail "(timeout) ptype fint" }
299 }
300
301 # ptype Foo<char>
302
303 send_gdb "ptype fchar\n"
304 gdb_expect {
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" }
306 -re "$gdb_prompt $" { fail "ptype fchar" }
307 timeout { fail "(timeout) ptype fchar" }
308 }
309
310 # ptype Foo<volatile char *>
311
312 send_gdb "ptype fvpchar\n"
313 gdb_expect {
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" }
315 -re "$gdb_prompt $" { fail "ptype fvpchar" }
316 timeout { fail "(timeout) ptype fvpchar" }
317 }
318
319 # print a function from Foo<volatile char *>
320
321 # This test is sensitive to whitespace matching, so we'll do it twice,
322 # varying the spacing, because of PR gdb/33.
323
324 send_gdb "print Foo<volatile char *>::foo\n"
325 gdb_expect {
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" }
327 -re "No symbol \"Foo<volatile char \\*>\" in current context.\r\n$gdb_prompt $"
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 }
332 -re "$gdb_prompt $" { fail "print Foo<volatile char *>::foo" }
333 timeout { fail "(timeout) print Foo<volatile char *>::foo" }
334 }
335
336 send_gdb "print Foo<volatile char*>::foo\n"
337 gdb_expect {
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" }
339 -re "No symbol \"Foo<volatile char\\*>\" in current context.\r\n$gdb_prompt $"
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 }
344 -re "$gdb_prompt $" { fail "print Foo<volatile char*>::foo" }
345 timeout { fail "(timeout) print Foo<volatile char*>::foo" }
346 }
347
348 # Template Bar<T, int>
349
350 # same as Foo for g++
351 send_gdb "ptype Bar\n"
352 gdb_expect {
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" }
363 }
364
365
366 # ptype Bar<int,33>
367
368 send_gdb "ptype bint\n"
369 gdb_expect {
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" }
371 -re "$gdb_prompt $" { fail "ptype bint" }
372 timeout { fail "(timeout) ptype bint" }
373 }
374
375 # ptype Bar<int, (4>3)>
376
377 send_gdb "ptype bint2\n"
378 gdb_expect {
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" }
380 -re "$gdb_prompt $" { fail "ptype bint2" }
381 timeout { fail "(timeout) ptype bint2" }
382 }
383
384 # Template Baz<T, char>
385
386 # Same as Foo, for g++
387 send_gdb "ptype Baz\n"
388 gdb_expect {
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" }
399 }
400
401
402 # ptype Baz<int, 's'>
403
404 send_gdb "ptype bazint\n"
405 gdb_expect {
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" }
407 -re "$gdb_prompt $" { fail "ptype bazint" }
408 timeout { fail "(timeout) ptype bazint" }
409 }
410
411 # ptype Baz<char, 'a'>
412
413 send_gdb "ptype bazint2\n"
414 gdb_expect {
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" }
416 -re "$gdb_prompt $" { fail "ptype bazint2" }
417 timeout { fail "(timeout) ptype bazint2" }
418 }
419
420 # Template Qux<T, int (*f)(int) >
421 # Same as Foo for g++
422 send_gdb "ptype Qux\n"
423 gdb_expect {
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" }
434 }
435
436 # pt Qux<int,&string>
437
438 send_gdb "ptype quxint\n"
439 gdb_expect {
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" }
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
458 # Same as Foo for g++
459 send_gdb "ptype Spec\n"
460 gdb_expect {
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" }
471 }
472
473 # pt Spec<char,0>
474
475 send_gdb "ptype siip\n"
476 gdb_expect {
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" }
478 -re "$gdb_prompt $" { fail "ptype siip" }
479 timeout { fail "(timeout) ptype siip" }
480 }
481
482 # pt Garply<int>
483
484 send_gdb "ptype Garply<int>\n"
485 gdb_expect {
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>" }
487 -re "$gdb_prompt $" { fail "ptype Garply<int>" }
488 timeout { fail "(timeout) ptype Garply<int>" }
489 }
490
491 # ptype of nested template name
492
493 send_gdb "ptype Garply<Garply<char> >\n"
494 gdb_expect {
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> >" }
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
502 send_gdb "print Garply<Garply<char> >::garply\n"
503 gdb_expect {
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" }
505 -re ".*$gdb_prompt $" { fail "print Garply<Garply<char> >::garply" }
506 timeout { fail "print Garply<Garply<char> >::garply (timeout)" }
507 }
508
509 # djb - 06-03-2000
510 # Now should work fine
511 send_gdb "break Garply<Garply<char> >::garply\n"
512 gdb_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 }