*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / templates.exp
CommitLineData
0643ec3f 1# Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2002, 2003, 2004
b6ba6518 2# Free Software Foundation, Inc.
c906108c
SS
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18# Please email any bugs, comments, and/or additions to this file to:
19# bug-gdb@prep.ai.mit.edu
20
21# This file was written by Fred Fish. (fnf@cygnus.com)
22
23set ws "\[\r\n\t \]+"
24
25if $tracelevel then {
26 strace $tracelevel
27}
28
d4f3574e
SS
29if { [skip_cplus_tests] } { continue }
30
c906108c
SS
31set testfile "templates"
32set srcfile ${testfile}.cc
33set binfile ${objdir}/${subdir}/${testfile}
34
35# Create and source the file that provides information about the compiler
36# used to compile the test case.
37if [get_compiler_info ${binfile} "c++"] {
38 return -1
39}
40source ${binfile}.ci
41
c906108c
SS
42if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
43 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44}
45
c906108c
SS
46#
47# Test printing of the types of templates.
48#
49
50proc test_ptype_of_templates {} {
51 global gdb_prompt
52 global ws
53
54 send_gdb "ptype T5<int>\n"
55 gdb_expect {
1bc05c3a 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 $" {
c906108c
SS
57 pass "ptype T5<int>"
58 }
3b2a7ae5
MS
59 -re "type = class T5<int> \\{${ws}public:${ws}static int X;${ws}int x;${ws}int val;${ws}${ws}T5 \\(int\\);${ws}T5 \\(const class T5<int> &\\);${ws}void ~T5 \\(int\\);${ws}static void \\* new \\(unsigned int\\);${ws}static void delete \\(void ?\\*\\);${ws}int value \\((void|)\\);${ws}\\}${ws}$gdb_prompt $" { pass "ptype T5<int> -- new with unsigned int" }
60 -re "type = class T5<int> \\{.*public:.*static int X;.*int x;.*int val;.*T5 \\(int\\);.*T5 \\(const class T5<int> &\\);.*void ~T5 \\(int\\);.*static void \\* new \\(unsigned long\\);.*static void delete \\(void ?\\*\\);.*int value \\((void|)\\);.*\\}\r\n$gdb_prompt $" { pass "ptype T5<int> -- new with unsigned long" }
1bc05c3a 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 $" {
c906108c
SS
62 pass "ptype T5<int> (obsolescent gcc or gdb)"
63 }
3c00b570 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( int| long|)\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
5330f2db
DC
65 # This also triggers gdb/1113...
66 kfail "gdb/1111" "ptype T5<int>"
67 }
c906108c
SS
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 {
3b2a7ae5
MS
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" }
eef747c0 81 -re "type = class T5<int> \{.*public:.*static int X;.*int x;.*int val;.*.*T5 \\(int\\);.*.*void ~T5 \\(int\\).*.*.*int value \\((void|)\\);.*\}.*$gdb_prompt $" {
a0b3c4fd
JM
82 pass "ptype t5i"
83 }
1bc05c3a 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 $" {
c906108c
SS
85 pass "ptype t5i"
86 }
3b2a7ae5 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 $" {
c906108c
SS
88 pass "ptype t5i (obsolescent gcc or gdb)"
89 }
3c00b570 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( int| long|)\\);${ws}static void operator delete\\(void ?\\*\\);${ws}int value\\((void|)\\);${ws}\}\r\n$gdb_prompt $" {
5330f2db
DC
91 # This also triggers gdb/1113...
92 kfail "gdb/1111" "ptype T5<int>"
93 }
c906108c
SS
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
107proc test_template_breakpoints {} {
108 global gdb_prompt
109 global testfile
110 global srcdir
a0b3c4fd 111 global hp_aCC_compiler
c906108c
SS
112
113 send_gdb "break T5<int>::T5\n"
114 gdb_expect {
1bc05c3a 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\]*> $" {
c906108c 116 gdb_test "0" \
a9e2e984 117 "canceled" \
c906108c
SS
118 "constructor breakpoint (obsolete format!)"
119 }
1bc05c3a 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\]*> $" {
c906108c 121 gdb_test "0" \
a9e2e984 122 "canceled" \
c906108c
SS
123 "constructor breakpoint"
124 }
5330f2db
DC
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 }
760f6330
MS
131 -re ".*\n> $" {
132 gdb_test "0" \
133 "nonsense intended to insure that this test fails" \
134 "constructor breakpoint (bad menu choices)"
135 }
c906108c
SS
136 -re ".*$gdb_prompt $" { fail "constructor breakpoint" }
137 default { fail "constructor breakpoint (timeout)" }
138 }
139
a0b3c4fd
JM
140# See CLLbs14792
141 if {$hp_aCC_compiler} {setup_xfail hppa*-*-* CLLbs14792}
5330f2db
DC
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 }
c906108c
SS
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
165proc test_template_calls {} {
166 global gdb_prompt
a0b3c4fd 167 global hp_aCC_compiler
c906108c
SS
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
a0b3c4fd 175 if {!$hp_aCC_compiler} {setup_xfail hppa*-*-*}
c906108c
SS
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 }
a0b3c4fd
JM
182 -re "Cannot resolve .* to any overloaded instance.*$gdb_prompt $" {
183 setup_xfail hppa*-*-* CLLbs16899
184 xfail "print t5i.value"
185 }
c906108c 186 -re ".*$gdb_prompt $" { fail "print t5i.value()" }
a0b3c4fd 187 timeout { fail "print t5i.value() (timeout)" }
c906108c
SS
188 }
189}
190
191
192proc 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
c906108c
SS
200
201 set prms_id 0
202 set bug_id 0
203
204 # Start with a fresh gdb.
205
206 gdb_exit
207 gdb_start
208 gdb_reinitialize_dir $srcdir/$subdir
209 gdb_load $binfile
210
40f235b7 211 runto_main
c906108c
SS
212
213 test_ptype_of_templates
214 test_template_breakpoints
215
216 if [ runto_main] {
217 test_template_calls
218 }
219}
220
221do_tests
222
a0b3c4fd
JM
223
224# More tests for different kinds of template parameters,
225# templates with partial specializations, nested templates, etc.
226# These have been tested only with HP aCC. They probably won't
227# work with other compilers because of differences in mangling
228# schemes.
229# Added by Satish Pai <pai@apollo.hp.com> 1997-09-25
e6d71bf3
DB
230# As of 2000-06-03, C++ support has been improved to the point that g++ can
231# pass all of theses, excluding what appears to be one that exposes a stabs bug. - djb
a0b3c4fd 232
e6d71bf3
DB
233# I don't know how HP could be passing these tests without this. They
234# weren't breakpointing past a point where the below expressions were
235# initialized in the actual source. - djb
236
237send_gdb "b 770\n"
238gdb_expect {
239 -re ".*$gdb_prompt $"
240}
241send_gdb "c\n"
242gdb_expect {
243 -re ".*$gdb_prompt $"
244}
a0b3c4fd
JM
245send_gdb "print fint\n"
246gdb_expect {
247 -re "\\$\[0-9\]* = \\{x = 0, t = 0\\}\r\n$gdb_prompt $" { pass "print fint" }
248 -re "$gdb_prompt $" { fail "print fint" }
249 timeout { fail "(timeout) print fint" }
250}
251
252send_gdb "print fvpchar\n"
253gdb_expect {
254 -re "\\$\[0-9\]* = \\{x = 0, t = 0x0\\}\r\n$gdb_prompt $" { pass "print fvpchar" }
255 -re "$gdb_prompt $" { fail "print fvpchar" }
256 timeout { fail "(timeout) print fvpchar" }
257}
258
259# Template Foo<T>
260
dd14ab43
DC
261# Neither stabs nor DWARF-2 contains type information about templates
262# (as opposed to instantiations of templates), so in those
263# circumstances we expect GDB to not find a symbol. HP has a debug
264# format that contains more info, though, so it's also correct to
265# print out template info. (This affects several subsequent tests as
266# well.)
267
268# NOTE: carlton/2003-02-26: However, because of a bug in the way GDB
269# handles nested types, we don't get this right in the DWARF-2 case.
270
a0b3c4fd
JM
271send_gdb "ptype Foo\n"
272gdb_expect {
dd14ab43
DC
273 -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" }
274 -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" }
275 -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 $"
276 { # GCC 3.1, DWARF-2 output.
277 kfail "gdb/57" "ptype Foo" }
278 -re "No symbol \"Foo\" in current context.\r\n$gdb_prompt $"
279 { # GCC 2.95.3, stabs+ output.
280 pass "ptype Foo" }
281 -re "$gdb_prompt $" { fail "ptype Foo" }
282 timeout { fail "(timeout) ptype Foo" }
a0b3c4fd 283}
dd14ab43 284# -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 $"
a0b3c4fd
JM
285
286# ptype Foo<int>
287
288send_gdb "ptype fint\n"
289gdb_expect {
e6d71bf3 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 $" { pass "ptype fint" }
a0b3c4fd
JM
291 -re "$gdb_prompt $" { fail "ptype fint" }
292 timeout { fail "(timeout) ptype fint" }
293}
294
295# ptype Foo<char>
296
297send_gdb "ptype fchar\n"
298gdb_expect {
e6d71bf3 299 -re "type = (class |)Foo<char> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*.*char foo\\(int, char\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype fchar" }
a0b3c4fd
JM
300 -re "$gdb_prompt $" { fail "ptype fchar" }
301 timeout { fail "(timeout) ptype fchar" }
302}
303
304# ptype Foo<volatile char *>
305
306send_gdb "ptype fvpchar\n"
307gdb_expect {
5178b9d6 308 -re "type = (class |)Foo<volatile char ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*char.*\\*t;\r\n\r\n\[ \t\]*.*char \\* foo\\(int,.*char.*\\*\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype fvpchar" }
a0b3c4fd
JM
309 -re "$gdb_prompt $" { fail "ptype fvpchar" }
310 timeout { fail "(timeout) ptype fvpchar" }
311}
312
313# print a function from Foo<volatile char *>
314
0b71dc91
DC
315# This test is sensitive to whitespace matching, so we'll do it twice,
316# varying the spacing, because of PR gdb/33.
317
a0b3c4fd
JM
318send_gdb "print Foo<volatile char *>::foo\n"
319gdb_expect {
a9e0cf2c 320 -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" }
0b71dc91 321 -re "No symbol \"Foo<volatile char \\*>\" in current context.\r\n$gdb_prompt $"
85ca1584
DC
322 {
323 # This used to be a kfail gdb/33, but it shouldn't occur any more now.
324 fail "print Foo<volatile char *>::foo"
325 }
0b71dc91
DC
326 -re "$gdb_prompt $" { fail "print Foo<volatile char *>::foo" }
327 timeout { fail "(timeout) print Foo<volatile char *>::foo" }
328}
329
330send_gdb "print Foo<volatile char*>::foo\n"
331gdb_expect {
a9e0cf2c 332 -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" }
0b71dc91 333 -re "No symbol \"Foo<volatile char\\*>\" in current context.\r\n$gdb_prompt $"
85ca1584
DC
334 {
335 # This used to be a kfail gdb/33, but it shouldn't occur any more now.
336 fail "print Foo<volatile char *>::foo"
337 }
0b71dc91
DC
338 -re "$gdb_prompt $" { fail "print Foo<volatile char*>::foo" }
339 timeout { fail "(timeout) print Foo<volatile char*>::foo" }
a0b3c4fd
JM
340}
341
342# Template Bar<T, int>
343
e6d71bf3 344# same as Foo for g++
a0b3c4fd
JM
345send_gdb "ptype Bar\n"
346gdb_expect {
dd14ab43
DC
347 -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" }
348 -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" }
349 -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 $"
350 { # GCC 3.1, DWARF-2 output.
351 kfail "gdb/57" "ptype Bar" }
352 -re "No symbol \"Bar\" in current context.\r\n$gdb_prompt $"
353 { # GCC 2.95.3, stabs+ output.
354 pass "ptype Bar" }
355 -re "$gdb_prompt $" { fail "ptype Bar" }
356 timeout { fail "(timeout) ptype Bar" }
a0b3c4fd
JM
357}
358
359
360# ptype Bar<int,33>
5a2a0a20 361
a0b3c4fd
JM
362send_gdb "ptype bint\n"
363gdb_expect {
e6d71bf3 364 -re "type = (class |)Bar<int,(\\(int\\)|)33> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int bar\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype bint" }
a0b3c4fd
JM
365 -re "$gdb_prompt $" { fail "ptype bint" }
366 timeout { fail "(timeout) ptype bint" }
367}
368
369# ptype Bar<int, (4>3)>
370
371send_gdb "ptype bint2\n"
372gdb_expect {
e6d71bf3 373 -re "type = (class |)Bar<int,(\\(int\\)|)1> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int bar\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype bint2" }
a0b3c4fd
JM
374 -re "$gdb_prompt $" { fail "ptype bint2" }
375 timeout { fail "(timeout) ptype bint2" }
376}
377
378# Template Baz<T, char>
379
e6d71bf3 380# Same as Foo, for g++
a0b3c4fd
JM
381send_gdb "ptype Baz\n"
382gdb_expect {
dd14ab43
DC
383 -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" }
384 -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" }
385 -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 $"
386 { # GCC 3.1, DWARF-2 output.
387 kfail "gdb/57" "ptype Baz" }
388 -re "No symbol \"Baz\" in current context.\r\n$gdb_prompt $"
389 { # GCC 2.95.3, stabs+ output.
390 pass "ptype Baz" }
391 -re "$gdb_prompt $" { fail "ptype Baz" }
392 timeout { fail "(timeout) ptype Baz" }
a0b3c4fd
JM
393}
394
395
396# ptype Baz<int, 's'>
397
398send_gdb "ptype bazint\n"
399gdb_expect {
e6d71bf3 400 -re "type = (class |)Baz<int,(\\(char\\)|)(115|\\'s\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int baz\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype bazint" }
a0b3c4fd
JM
401 -re "$gdb_prompt $" { fail "ptype bazint" }
402 timeout { fail "(timeout) ptype bazint" }
403}
404
405# ptype Baz<char, 'a'>
406
407send_gdb "ptype bazint2\n"
408gdb_expect {
e6d71bf3 409 -re "type = (class |)Baz<char,(\\(char\\)|)(97|\\'a\\')> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*char t;\r\n\r\n\[ \t\]*.*char baz\\(int, char\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype bazint2" }
a0b3c4fd
JM
410 -re "$gdb_prompt $" { fail "ptype bazint2" }
411 timeout { fail "(timeout) ptype bazint2" }
412}
413
414# Template Qux<T, int (*f)(int) >
e6d71bf3 415# Same as Foo for g++
a0b3c4fd
JM
416send_gdb "ptype Qux\n"
417gdb_expect {
dd14ab43
DC
418 -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" }
419 -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" }
420 -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 $"
421 { # GCC 3.1, DWARF-2 output.
422 kfail "gdb/57" "ptype Qux" }
423 -re "No symbol \"Qux\" in current context.\r\n$gdb_prompt $"
424 { # GCC 2.95.3, stabs+ output.
425 pass "ptype Qux" }
426 -re "$gdb_prompt $" { fail "ptype Qux" }
427 timeout { fail "(timeout) ptype Qux" }
a0b3c4fd
JM
428}
429
430# pt Qux<int,&string>
431
432send_gdb "ptype quxint\n"
433gdb_expect {
e6d71bf3 434 -re "type = class Qux<int,&string> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int qux\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype quxint" }
a0b3c4fd
JM
435 -re "$gdb_prompt $" { fail "ptype quxint" }
436 timeout { fail "(timeout) ptype quxint" }
437}
438
439# pt Qux<char,0>
440
441# commented out this as quxint2 declaration was commented out in
442# templates.exp -- ovidiu
443# send_gdb "ptype quxint2\n"
444# gdb_expect {
445# -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" }
446# -re "$gdb_prompt $" { fail "ptype quxint2" }
447# timeout { fail "(timeout) ptype quxint2" }
448# }
449
450# Template Spec<T1, T2>
451
e6d71bf3 452# Same as Foo for g++
a0b3c4fd
JM
453send_gdb "ptype Spec\n"
454gdb_expect {
dd14ab43
DC
455 -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" }
456 -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" }
457 -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 $"
458 { # GCC 3.1, DWARF-2 output.
459 kfail "gdb/57" "ptype Spec" }
460 -re "No symbol \"Spec\" in current context.\r\n$gdb_prompt $"
461 { # GCC 2.95.3, stabs+ output.
462 pass "ptype Spec" }
463 -re "$gdb_prompt $" { fail "ptype Spec" }
464 timeout { fail "(timeout) ptype Spec" }
a0b3c4fd
JM
465}
466
467# pt Spec<char,0>
468
469send_gdb "ptype siip\n"
470gdb_expect {
5178b9d6 471 -re "type = class Spec<int,int ?\\*> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\r\n\[ \t\]*.*int spec\\(int ?\\*\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype siip" }
a0b3c4fd
JM
472 -re "$gdb_prompt $" { fail "ptype siip" }
473 timeout { fail "(timeout) ptype siip" }
474}
475
476# pt Garply<int>
477
478send_gdb "ptype Garply<int>\n"
479gdb_expect {
e6d71bf3 480 -re "type = class Garply<int> \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*int t;\r\n\r\n\[ \t\]*.*int garply\\(int, int\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype Garply<int>" }
a0b3c4fd
JM
481 -re "$gdb_prompt $" { fail "ptype Garply<int>" }
482 timeout { fail "(timeout) ptype Garply<int>" }
483}
484
485# ptype of nested template name
486
487send_gdb "ptype Garply<Garply<char> >\n"
488gdb_expect {
e6d71bf3 489 -re "type = (class |)Garply<Garply<char> > \\{\r\n\[ \t\]*public:\r\n\[ \t\]*int x;\r\n\[ \t\]*.*(class |)Garply<char> t;\r\n\r\n\[ \t\]*.*(class |)Garply<char> garply\\(int, (class |)Garply<char>\\);\r\n\\}\r\n$gdb_prompt $" { pass "ptype Garply<Garply<char> >" }
a0b3c4fd
JM
490 -re "$gdb_prompt $" { fail "ptype Garply<Garply<char> >" }
491 timeout { fail "(timeout) ptype Garply<Garply<char> >" }
492}
493
494# print out a function from a nested template name
495
496send_gdb "print Garply<Garply<char> >::garply\n"
497gdb_expect {
5330f2db 498 -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" }
a0b3c4fd
JM
499 -re ".*$gdb_prompt $" { fail "print Garply<Garply<char> >::garply" }
500 timeout { fail "print Garply<Garply<char> >::garply (timeout)" }
501}
502
e6d71bf3
DB
503# djb - 06-03-2000
504# Now should work fine
505send_gdb "break Garply<Garply<char> >::garply\n"
506gdb_expect {
507 -re "Breakpoint \[0-9\]* at $hex: file .*templates.cc, line.*\r\n$gdb_prompt $" { pass "break Garply<Garply<char> >::garply" }
508 -re ".*$gdb_prompt $" { fail "break Garply<Garply<char> >::garply" }
509 timeout { fail "break Garply<Garply<char> >::garply (timeout)" }
510}
This page took 0.425737 seconds and 4 git commands to generate.