2003-02-26 David Carlton <carlton@math.stanford.edu>
[deliverable/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 ".*$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 runto_main
196
197 test_ptype_of_templates
198 test_template_breakpoints
199
200 if [ runto_main] {
201 test_template_calls
202 }
203 }
204
205 do_tests
206
207
208 # More tests for different kinds of template parameters,
209 # templates with partial specializations, nested templates, etc.
210 # These have been tested only with HP aCC. They probably won't
211 # work with other compilers because of differences in mangling
212 # schemes.
213 # Added by Satish Pai <pai@apollo.hp.com> 1997-09-25
214 # As of 2000-06-03, C++ support has been improved to the point that g++ can
215 # pass all of theses, excluding what appears to be one that exposes a stabs bug. - djb
216
217 # I don't know how HP could be passing these tests without this. They
218 # weren't breakpointing past a point where the below expressions were
219 # initialized in the actual source. - djb
220
221 send_gdb "b 770\n"
222 gdb_expect {
223 -re ".*$gdb_prompt $"
224 }
225 send_gdb "c\n"
226 gdb_expect {
227 -re ".*$gdb_prompt $"
228 }
229 send_gdb "print fint\n"
230 gdb_expect {
231 -re "\\$\[0-9\]* = \\{x = 0, t = 0\\}\r\n$gdb_prompt $" { pass "print fint" }
232 -re "$gdb_prompt $" { fail "print fint" }
233 timeout { fail "(timeout) print fint" }
234 }
235
236 send_gdb "print fvpchar\n"
237 gdb_expect {
238 -re "\\$\[0-9\]* = \\{x = 0, t = 0x0\\}\r\n$gdb_prompt $" { pass "print fvpchar" }
239 -re "$gdb_prompt $" { fail "print fvpchar" }
240 timeout { fail "(timeout) print fvpchar" }
241 }
242
243 # Template Foo<T>
244
245 # Neither stabs nor DWARF-2 contains type information about templates
246 # (as opposed to instantiations of templates), so in those
247 # circumstances we expect GDB to not find a symbol. HP has a debug
248 # format that contains more info, though, so it's also correct to
249 # print out template info. (This affects several subsequent tests as
250 # well.)
251
252 # NOTE: carlton/2003-02-26: However, because of a bug in the way GDB
253 # handles nested types, we don't get this right in the DWARF-2 case.
254
255 send_gdb "ptype Foo\n"
256 gdb_expect {
257 -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" }
258 -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" }
259 -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 $"
260 { # GCC 3.1, DWARF-2 output.
261 kfail "gdb/57" "ptype Foo" }
262 -re "No symbol \"Foo\" in current context.\r\n$gdb_prompt $"
263 { # GCC 2.95.3, stabs+ output.
264 pass "ptype Foo" }
265 -re "$gdb_prompt $" { fail "ptype Foo" }
266 timeout { fail "(timeout) ptype Foo" }
267 }
268 # -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 $"
269
270 # ptype Foo<int>
271
272 send_gdb "ptype fint\n"
273 gdb_expect {
274 -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" }
275 -re "$gdb_prompt $" { fail "ptype fint" }
276 timeout { fail "(timeout) ptype fint" }
277 }
278
279 # ptype Foo<char>
280
281 send_gdb "ptype fchar\n"
282 gdb_expect {
283 -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" }
284 -re "$gdb_prompt $" { fail "ptype fchar" }
285 timeout { fail "(timeout) ptype fchar" }
286 }
287
288 # ptype Foo<volatile char *>
289
290 send_gdb "ptype fvpchar\n"
291 gdb_expect {
292 -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" }
293 -re "$gdb_prompt $" { fail "ptype fvpchar" }
294 timeout { fail "(timeout) ptype fvpchar" }
295 }
296
297 # print a function from Foo<volatile char *>
298
299 send_gdb "print Foo<volatile char *>::foo\n"
300 gdb_expect {
301 -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" }
302 -re "$gdb_prompt $" { fail "print Foo<volatile char *>::foo" }
303 timeout { fail "(timeout) print Foo<volatile char *>::foo" }
304 }
305
306 # Template Bar<T, int>
307
308 # same as Foo for g++
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 "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 $"
314 { # GCC 3.1, DWARF-2 output.
315 kfail "gdb/57" "ptype Bar" }
316 -re "No symbol \"Bar\" in current context.\r\n$gdb_prompt $"
317 { # GCC 2.95.3, stabs+ output.
318 pass "ptype Bar" }
319 -re "$gdb_prompt $" { fail "ptype Bar" }
320 timeout { fail "(timeout) ptype Bar" }
321 }
322
323
324 # ptype Bar<int,33>
325
326 send_gdb "ptype bint\n"
327 gdb_expect {
328 -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" }
329 -re "$gdb_prompt $" { fail "ptype bint" }
330 timeout { fail "(timeout) ptype bint" }
331 }
332
333 # ptype Bar<int, (4>3)>
334
335 send_gdb "ptype bint2\n"
336 gdb_expect {
337 -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" }
338 -re "$gdb_prompt $" { fail "ptype bint2" }
339 timeout { fail "(timeout) ptype bint2" }
340 }
341
342 # Template Baz<T, char>
343
344 # Same as Foo, for g++
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 "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 $"
350 { # GCC 3.1, DWARF-2 output.
351 kfail "gdb/57" "ptype Baz" }
352 -re "No symbol \"Baz\" in current context.\r\n$gdb_prompt $"
353 { # GCC 2.95.3, stabs+ output.
354 pass "ptype Baz" }
355 -re "$gdb_prompt $" { fail "ptype Baz" }
356 timeout { fail "(timeout) ptype Baz" }
357 }
358
359
360 # ptype Baz<int, 's'>
361
362 send_gdb "ptype bazint\n"
363 gdb_expect {
364 -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" }
365 -re "$gdb_prompt $" { fail "ptype bazint" }
366 timeout { fail "(timeout) ptype bazint" }
367 }
368
369 # ptype Baz<char, 'a'>
370
371 send_gdb "ptype bazint2\n"
372 gdb_expect {
373 -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" }
374 -re "$gdb_prompt $" { fail "ptype bazint2" }
375 timeout { fail "(timeout) ptype bazint2" }
376 }
377
378 # Template Qux<T, int (*f)(int) >
379 # Same as Foo for g++
380 send_gdb "ptype Qux\n"
381 gdb_expect {
382 -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" }
383 -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" }
384 -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 $"
385 { # GCC 3.1, DWARF-2 output.
386 kfail "gdb/57" "ptype Qux" }
387 -re "No symbol \"Qux\" in current context.\r\n$gdb_prompt $"
388 { # GCC 2.95.3, stabs+ output.
389 pass "ptype Qux" }
390 -re "$gdb_prompt $" { fail "ptype Qux" }
391 timeout { fail "(timeout) ptype Qux" }
392 }
393
394 # pt Qux<int,&string>
395
396 send_gdb "ptype quxint\n"
397 gdb_expect {
398 -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" }
399 -re "$gdb_prompt $" { fail "ptype quxint" }
400 timeout { fail "(timeout) ptype quxint" }
401 }
402
403 # pt Qux<char,0>
404
405 # commented out this as quxint2 declaration was commented out in
406 # templates.exp -- ovidiu
407 # send_gdb "ptype quxint2\n"
408 # gdb_expect {
409 # -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" }
410 # -re "$gdb_prompt $" { fail "ptype quxint2" }
411 # timeout { fail "(timeout) ptype quxint2" }
412 # }
413
414 # Template Spec<T1, T2>
415
416 # Same as Foo for g++
417 send_gdb "ptype Spec\n"
418 gdb_expect {
419 -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" }
420 -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" }
421 -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 $"
422 { # GCC 3.1, DWARF-2 output.
423 kfail "gdb/57" "ptype Spec" }
424 -re "No symbol \"Spec\" in current context.\r\n$gdb_prompt $"
425 { # GCC 2.95.3, stabs+ output.
426 pass "ptype Spec" }
427 -re "$gdb_prompt $" { fail "ptype Spec" }
428 timeout { fail "(timeout) ptype Spec" }
429 }
430
431 # pt Spec<char,0>
432
433 send_gdb "ptype siip\n"
434 gdb_expect {
435 -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" }
436 -re "$gdb_prompt $" { fail "ptype siip" }
437 timeout { fail "(timeout) ptype siip" }
438 }
439
440 # pt Garply<int>
441
442 send_gdb "ptype Garply<int>\n"
443 gdb_expect {
444 -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>" }
445 -re "$gdb_prompt $" { fail "ptype Garply<int>" }
446 timeout { fail "(timeout) ptype Garply<int>" }
447 }
448
449 # ptype of nested template name
450
451 send_gdb "ptype Garply<Garply<char> >\n"
452 gdb_expect {
453 -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> >" }
454 -re "$gdb_prompt $" { fail "ptype Garply<Garply<char> >" }
455 timeout { fail "(timeout) ptype Garply<Garply<char> >" }
456 }
457
458 # print out a function from a nested template name
459
460 send_gdb "print Garply<Garply<char> >::garply\n"
461 gdb_expect {
462 -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" }
463 -re ".*$gdb_prompt $" { fail "print Garply<Garply<char> >::garply" }
464 timeout { fail "print Garply<Garply<char> >::garply (timeout)" }
465 }
466
467 # djb - 06-03-2000
468 # Now should work fine
469 send_gdb "break Garply<Garply<char> >::garply\n"
470 gdb_expect {
471 -re "Breakpoint \[0-9\]* at $hex: file .*templates.cc, line.*\r\n$gdb_prompt $" { pass "break Garply<Garply<char> >::garply" }
472 -re ".*$gdb_prompt $" { fail "break Garply<Garply<char> >::garply" }
473 timeout { fail "break Garply<Garply<char> >::garply (timeout)" }
474 }
This page took 0.051737 seconds and 4 git commands to generate.