* gdb.c++/classes.exp, gdb.c++/derivation.exp,
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.c++ / derivation.exp
CommitLineData
f266096b 1# Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c
SS
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Elena Zannoni (ezannoni@cygnus.com)
21
22# This file is part of the gdb testsuite
23#
24
25#
26# tests for inheritance, with several derivations types combinations (private,
27# public, protected)
28# classes have simple members and member functions.
29#
30
31
32if $tracelevel then {
33 strace $tracelevel
34 }
35
36#
37# test running programs
38#
39set prms_id 0
40set bug_id 0
41
d4f3574e
SS
42if { [skip_cplus_tests] } { continue }
43
c906108c
SS
44set testfile "derivation"
45set srcfile ${testfile}.cc
46set binfile ${objdir}/${subdir}/${testfile}
47
d4f3574e
SS
48# Create and source the file that provides information about the compiler
49# used to compile the test case.
50
51if [get_compiler_info ${binfile} "c++"] {
52 return -1
53}
54
c906108c
SS
55if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
56 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
57}
58
59gdb_exit
60gdb_start
61gdb_reinitialize_dir $srcdir/$subdir
62gdb_load ${binfile}
c906108c
SS
63
64#
65# set it up at a breakpoint so we can play with the variable values
66#
67if ![runto_main] then {
68 perror "couldn't run to breakpoint"
69 continue
70}
71
f266096b
MC
72if ![runto 'marker1'] then {
73 perror "couldn't run to marker1"
74 continue
75}
76
77gdb_test "up" ".*main.*" "up from marker1"
c906108c
SS
78
79
80
81send_gdb "print a_instance\n"
82gdb_expect {
83 -re ".\[0-9\]* = \{a = 1, aa = 2\}\r\n$gdb_prompt $" {
84 pass "print value of a_instance"
85 }
86 -re ".*$gdb_prompt $" { fail "print value of a_instance" }
87 timeout { fail "(timeout) print value of a_instance" }
88 }
89
90
91send_gdb "ptype a_instance\n"
92gdb_expect {
5178b9d6 93 -re "type = class A \{\r\n\[\t \]*public:\r\n\[\t \]*int a;\r\n\[\t \]*int aa;\[\r\n\t ]+A & operator=\\(A const ?&\\);\[\r\n\t ]+A\\(A const ?&\\);\[\r\n\t ]+A\\((void|)\\);\r\n\[\t \]*int afoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype a_instance (with synth ops)" }
cbfa24cd 94 -re "type = class A \{\r\n\[\t \]*public:\r\n\[\t \]*int a;\r\n\[\t \]*int aa;\[\r\n\t \]+A\\(void\\);\r\n\[\t \]*int afoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype a_instance (no synth ops)" }
c906108c
SS
95 -re ".*$gdb_prompt $" { fail "ptype a_instance" }
96 timeout { fail "(timeout) ptype a_instance" }
97}
98
99
100send_gdb "print d_instance\n"
101gdb_expect {
102 -re ".\[0-9\]* = \{<A> = \{a = 1, aa = 2\}, <B> = \{b = 3, bb = 4\}, <C> = \{c = 5, cc = 6\}, d = 7, dd = 8\}\r\n$gdb_prompt $" {
103 pass "print value of d_instance"
104 }
105 -re ".\[0-9\]* = \{<class A> = \{a = 1, aa = 2\}, <class B> = \{b = 3, bb = 4\}, <class C> = \{c = 5, cc = 6\}, d = 7, dd = 8\}\r\n$gdb_prompt $" {
106 pass "print value of d_instance"
107 }
108 -re ".*$gdb_prompt $" { fail "print value of d_instance" }
109 timeout { fail "(timeout) print value of d_instance" }
110 }
111
112 if {$gcc_compiled} then {
113 send_gdb "ptype d_instance\n"
114 gdb_expect {
5178b9d6 115 -re "type = class D : private A, public B, (protected|private) C \{\r\n\[\t \]*public:\r\n\[\t \]*int d;\r\n\[\t \]*int dd;\[\r\n\t ]+D & operator=\\(D const ?&\\);\[\r\n\t ]+D\\(D const ?&\\);\[\r\n\t \]+D\\((void|)\\);\r\n\[\t \]*int dfoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype d_instance" }
cbfa24cd 116 -re "type = class D : private A, public B, private C \{\r\n\[\t \]*public:\r\n\[\t \]*int d;\r\n\[\t \]*int dd;\[\r\n\t \]+D\\(void\\);\r\n\[\t \]*int dfoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype d_instance" }
c906108c
SS
117 -re ".*$gdb_prompt $" { fail "ptype d_instance" }
118 timeout { fail "(timeout) ptype d_instance" }
119 }
120 } else {
121 send_gdb "ptype d_instance\n"
122 gdb_expect {
cbfa24cd 123 -re "type = class D : private A, public B, protected C \{\r\n\[\t \]*public:\r\n\[\t \]*int d;\r\n\[\t \]*int dd;\[\r\n\t \]+D\\(void\\);\r\n\[\t \]*int dfoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype d_instance" }
c906108c
SS
124 -re ".*$gdb_prompt $" { fail "ptype d_instance" }
125 timeout { fail "(timeout) ptype d_instance" }
126 }
127 }
128
129
130send_gdb "print e_instance\n"
131gdb_expect {
132 -re ".\[0-9\]* = \{<A> = \{a = 1, aa = 2\}, <B> = \{b = 3, bb = 4\}, <C> = \{c = 5, cc = 6\}, e = 9, ee = 10\}\r\n$gdb_prompt $" {
133 pass "print value of e_instance"
134 }
135 -re ".\[0-9\]* = \{<class A> = \{a = 1, aa = 2\}, <class B> = \{b = 3, bb = 4\}, <class C> = \{c = 5, cc = 6\}, e = 9, ee = 10\}\r\n$gdb_prompt $" {
136 pass "print value of e_instance"
137 }
138 -re ".*$gdb_prompt $" { fail "print value of e_instance" }
139 timeout { fail "(timeout) print value of e_instance" }
140 }
141
142 if {$gcc_compiled} {
143 send_gdb "ptype e_instance\n"
144 gdb_expect {
5178b9d6
DJ
145 -re "type = class E : public A, private B, (protected|private) C \{\r\n\[\t \]*public:\r\n\[\t \]*int e;\r\n\[\t \]*int ee;\[\r\n\t ]+E & operator=\\(E const ?&\\);\[\r\n\t ]+E\\(E const ?&\\);\[\r\n\t \]+E\\((void|)\\);\r\n\[\t \]*int efoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype e_instance" }
146 -re "type = class E : public A, private B, private C \{\r\n\[\t \]*public:\r\n\[\t \]*int e;\r\n\[\t \]*int ee;\[\r\n\t \]+E\\((void|)\\);\r\n\[\t \]*int efoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype e_instance" }
c906108c
SS
147 -re ".*$gdb_prompt $" { fail "ptype e_instance" }
148 timeout { fail "(timeout) ptype e_instance" }
149 }
150 } else {
151 send_gdb "ptype e_instance\n"
152 gdb_expect {
5178b9d6 153 -re "type = class E : public A, private B, protected C \{\r\n\[\t \]*public:\r\n\[\t \]*int e;\r\n\[\t \]*int ee;\[\r\n\t \]+E\\((void|)\\);\r\n\[\t \]*int efoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype e_instance" }
c906108c
SS
154 -re ".*$gdb_prompt $" { fail "ptype e_instance" }
155 timeout { fail "(timeout) ptype e_instance" }
156 }
157 }
158
159
160send_gdb "print f_instance\n"
161gdb_expect {
162 -re ".\[0-9\]* = \{<A> = \{a = 1, aa = 2\}, <B> = \{b = 3, bb = 4\}, <C> = \{c = 5, cc = 6\}, f = 11, ff = 12\}\r\n$gdb_prompt $" {
163 pass "print value of f_instance"
164 }
165 -re ".\[0-9\]* = \{<class A> = \{a = 1, aa = 2\}, <class B> = \{b = 3, bb = 4\}, <class C> = \{c = 5, cc = 6\}, f = 11, ff = 12\}\r\n$gdb_prompt $" {
166 pass "print value of f_instance"
167 }
168 -re ".*$gdb_prompt $" { fail "print value of f_instance" }
169 timeout { fail "(timeout) print value of f_instance" }
170 }
171
172send_gdb "ptype f_instance\n"
173gdb_expect {
5178b9d6
DJ
174 -re "type = class F : private A, public B, private C \{\r\n\[\t \]*public:\r\n\[\t \]*int f;\r\n\[\t \]*int ff;\[\r\n\t ]+F & operator=\\(F const ?&\\);\[\r\n\t ]+F\\(F const ?&\\);\[\r\n\t \]+F\\((void|)\\);\r\n\[\t \]*int ffoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype f_instance" }
175 -re "type = class F : private A, public B, private C \{\r\n\[\t \]*public:\r\n\[\t \]*int f;\r\n\[\t \]*int ff;\[\r\n\t \]+F\\((void|)\\);\r\n\[\t \]*int ffoo\\((void|)\\);\r\n\[\t \]*int foo\\((void|)\\);\r\n\}.*$gdb_prompt $" { pass "ptype f_instance" }
c906108c
SS
176 -re ".*$gdb_prompt $" { fail "ptype f_instance" }
177 timeout { fail "(timeout) ptype f_instance" }
178}
179
180
181
182send_gdb "print d_instance.a\n"
183gdb_expect {
184 -re ".\[0-9\]* = 1.*$gdb_prompt $" {
185 pass "print value of d_instance.a"
186 }
187 -re ".*$gdb_prompt $" { fail "print value of d_instance.a" }
188 timeout { fail "(timeout) print value of d_instance.a" }
189 }
190
191send_gdb "print d_instance.aa\n"
192gdb_expect {
193 -re ".\[0-9\]* = 2.*$gdb_prompt $" {
194 pass "print value of d_instance.aa"
195 }
196 -re ".*$gdb_prompt $" { fail "print value of d_instance.aa" }
197 timeout { fail "(timeout) print value of d_instance.aa" }
198 }
199
200send_gdb "print d_instance.b\n"
201gdb_expect {
202 -re ".\[0-9\]* = 3.*$gdb_prompt $" {
203 pass "print value of d_instance.b"
204 }
205 -re ".*$gdb_prompt $" { fail "print value of d_instance.b" }
206 timeout { fail "(timeout) print value of d_instance.b" }
207 }
208
209send_gdb "print d_instance.bb\n"
210gdb_expect {
211 -re ".\[0-9\]* = 4.*$gdb_prompt $" {
212 pass "print value of d_instance.bb"
213 }
214 -re ".*$gdb_prompt $" { fail "print value of d_instance.bb" }
215 timeout { fail "(timeout) print value of d_instance.bb" }
216 }
217
218send_gdb "print d_instance.c\n"
219gdb_expect {
220 -re ".\[0-9\]* = 5.*$gdb_prompt $" {
221 pass "print value of d_instance.c"
222 }
223 -re ".*$gdb_prompt $" { fail "print value of d_instance.c" }
224 timeout { fail "(timeout) print value of d_instance.c" }
225 }
226
227send_gdb "print d_instance.cc\n"
228gdb_expect {
229 -re ".\[0-9\]* = 6.*$gdb_prompt $" {
230 pass "print value of d_instance.cc"
231 }
232 -re ".*$gdb_prompt $" { fail "print value of d_instance.cc" }
233 timeout { fail "(timeout) print value of d_instance.cc" }
234 }
235
236send_gdb "print d_instance.d\n"
237gdb_expect {
238 -re ".\[0-9\]* = 7.*$gdb_prompt $" {
239 pass "print value of d_instance.d"
240 }
241 -re ".*$gdb_prompt $" { fail "print value of d_instance.d" }
242 timeout { fail "(timeout) print value of d_instance.d" }
243 }
244
245send_gdb "print d_instance.dd\n"
246gdb_expect {
247 -re ".\[0-9\]* = 8.*$gdb_prompt $" {
248 pass "print value of d_instance.dd"
249 }
250 -re ".*$gdb_prompt $" { fail "print value of d_instance.dd" }
251 timeout { fail "(timeout) print value of d_instance.dd" }
252 }
253
254send_gdb "print g_instance.a\n"
255gdb_expect {
adf40b2e
JM
256 -re "warning.*$gdb_prompt $" {
257 # The compiler doesn't think this is ambiguous.
258 fail "print value of g_instance.a"
259 }
c906108c
SS
260 -re ".\[0-9\]* = 15.*$gdb_prompt $" {
261 pass "print value of g_instance.a"
262 }
263 -re ".*$gdb_prompt $" { fail "print value of g_instance.a" }
264 timeout { fail "(timeout) print value of g_instance.a" }
265 }
266
267send_gdb "print g_instance.b\n"
268gdb_expect {
adf40b2e
JM
269 -re "warning.*$gdb_prompt $" {
270 # The compiler doesn't think this is ambiguous.
271 fail "print value of g_instance.b"
272 }
c906108c
SS
273 -re ".\[0-9\]* = 16.*$gdb_prompt $" {
274 pass "print value of g_instance.b"
275 }
276 -re ".*$gdb_prompt $" { fail "print value of g_instance.b" }
277 timeout { fail "(timeout) print value of g_instance.b" }
278 }
279
280send_gdb "print g_instance.c\n"
281gdb_expect {
adf40b2e
JM
282 -re "warning.*$gdb_prompt $" {
283 # The compiler doesn't think this is ambiguous.
284 fail "print value of g_instance.c"
285 }
c906108c
SS
286 -re ".\[0-9\]* = 17.*$gdb_prompt $" {
287 pass "print value of g_instance.c"
288 }
289 -re ".*$gdb_prompt $" { fail "print value of g_instance.c" }
290 timeout { fail "(timeout) print value of g_instance.c" }
291 }
292
104c1213
JM
293# The following cases always fail with g++ output, and should be fixed
294# someday. -sts 1999-08-25
295
296if { $gcc_compiled } { setup_xfail "*-*-*" }
c906108c
SS
297send_gdb "print g_instance.afoo()\n"
298gdb_expect {
299 -re ".\[0-9\]* = 1.*$gdb_prompt $" {
300 pass "print value of g_instance.afoo()"
301 }
302 -re ".*$gdb_prompt $" { fail "print value of g_instance.afoo()" }
303 timeout { fail "(timeout) print value of g_instance.afoo()" }
304 }
305
104c1213 306if { $gcc_compiled } { setup_xfail "*-*-*" }
c906108c
SS
307send_gdb "print g_instance.bfoo()\n"
308gdb_expect {
309 -re ".\[0-9\]* = 2.*$gdb_prompt $" {
310 pass "print value of g_instance.bfoo()"
311 }
312 -re ".*$gdb_prompt $" { fail "print value of g_instance.bfoo()" }
313 timeout { fail "(timeout) print value of g_instance.bfoo()" }
314 }
315
104c1213 316if { $gcc_compiled } { setup_xfail "*-*-*" }
c906108c
SS
317send_gdb "print g_instance.cfoo()\n"
318gdb_expect {
319 -re ".\[0-9\]* = 3.*$gdb_prompt $" {
320 pass "print value of g_instance.cfoo()"
321 }
322 -re ".*$gdb_prompt $" { fail "print value of g_instance.cfoo()" }
323 timeout { fail "(timeout) print value of g_instance.cfoo()" }
324 }
This page took 0.167753 seconds and 4 git commands to generate.