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