2004-01-01 Michael Chastain <mec.gnu@mindspring.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / derivation.exp
CommitLineData
6b7a4c0e
MC
1# Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004
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 Elena Zannoni (ezannoni@cygnus.com)
6b7a4c0e 22# And rewritten by Michael Chastain <mec.gnu@mindspring.com>
c906108c
SS
23
24# This file is part of the gdb testsuite
c906108c 25
6b7a4c0e
MC
26# tests for inheritance, with several derivations types combinations
27# (private, public, protected)
c906108c 28# classes have simple members and member functions.
c906108c 29
6b7a4c0e
MC
30set ws "\[\r\n\t \]+"
31set nl "\[\r\n\]+"
c906108c
SS
32
33if $tracelevel then {
6b7a4c0e
MC
34 strace $tracelevel
35}
36
37# Start program.
c906108c 38
c906108c
SS
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
48if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
49 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
50}
51
52gdb_exit
53gdb_start
54gdb_reinitialize_dir $srcdir/$subdir
55gdb_load ${binfile}
c906108c 56
6b7a4c0e 57# Set it up at a breakpoint so we can play with the variable values.
c906108c 58
f266096b
MC
59if ![runto 'marker1'] then {
60 perror "couldn't run to marker1"
61 continue
62}
63
64gdb_test "up" ".*main.*" "up from marker1"
c906108c 65
6b7a4c0e
MC
66# Print class types and values.
67# See virtfunc.exp for a discussion of ptype.
c906108c 68
6b7a4c0e 69# class A
c906108c 70
6b7a4c0e
MC
71set re_class "((struct|class) A \{${ws}public:|struct A \{)"
72set re_fields "int a;${ws}int aa;"
73set re_methods "A\\((void|)\\);${ws}int afoo\\((void|)\\);${ws}int foo\\((void|)\\);"
74set re_synth_gcc_23 "A & operator=\\(A const ?&\\);${ws}A\\(A const ?&\\);"
75set re_all_methods "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
c906108c 76
184ad485
MC
77gdb_test "print a_instance" "\\$\[0-9\]+ = \{a = 1, aa = 2\}" "print value of a_instance"
78
6b7a4c0e 79gdb_test_multiple "ptype a_instance" "ptype a_instance" {
184ad485
MC
80 -re "type = $re_class${ws}$re_fields${ws}$re_methods$nl\}$nl$gdb_prompt $" {
81 pass "ptype a_instance (no synth ops)"
82 }
83 -re "type = $re_class${ws}$re_fields${ws}$re_synth_gcc_23${ws}$re_methods${ws}$nl\}$nl$gdb_prompt $" {
84 pass "ptype a_instance (with synth ops)"
85 }
86 -re "type = $re_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
87 # TODO: this is fine, it's just gcc abi 2
88 # pass "ptype a_instance (with synth ops) (abi 2)"
89 fail "ptype a_instance"
6b7a4c0e 90 }
c906108c
SS
91}
92
6b7a4c0e
MC
93# class D
94
95set re_class "class D : private A, public B, protected C \{${ws}public:"
184ad485 96set XX_class "class D : private A, public B, private C \{${ws}public:"
6b7a4c0e
MC
97set re_fields "int d;${ws}int dd;"
98set re_methods "D\\((void|)\\);${ws}int dfoo\\((void|)\\);${ws}int foo\\((void|)\\);"
99set re_synth_gcc_23 "D & operator=\\(D const ?&\\);${ws}D\\(D const ?&\\);"
100set re_all_methods "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
c906108c 101
184ad485
MC
102gdb_test_multiple "print d_instance" "print value of d_instance" {
103 -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, d = 7, dd = 8\}$nl$gdb_prompt $" {
104 pass "print value of d_instance"
105 }
106}
107
6b7a4c0e 108gdb_test_multiple "ptype d_instance" "ptype d_instance" {
184ad485
MC
109 -re "type = $re_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
110 # TODO: this is okay, gcc abi 2.
111 fail "ptype d_instance"
112 }
6b7a4c0e
MC
113 -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
114 pass "ptype d_instance"
115 }
184ad485
MC
116 -re "type = $XX_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
117 # TODO: this is okay, gcc abi 2.
118 # kfail "gdb/1498" "ptype d_instance"
119 fail "ptype d_instance"
6b7a4c0e 120 }
184ad485
MC
121 -re "type = $XX_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
122 # TODO: this is a gcc bug.
123 # kfail "gdb/1498" "ptype d_instance"
124 pass "ptype d_instance"
6b7a4c0e
MC
125 }
126}
c906108c 127
6b7a4c0e 128# class E
c906108c 129
6b7a4c0e 130set re_class "class E : public A, private B, protected C \{${ws}public:"
184ad485 131set XX_class "class E : public A, private B, private C \{${ws}public:"
6b7a4c0e
MC
132set re_fields "int e;${ws}int ee;"
133set re_methods "E\\((void|)\\);${ws}int efoo\\((void|)\\);${ws}int foo\\((void|)\\);"
134set re_synth_gcc_23 "E & operator=\\(E const ?&\\);${ws}E\\(E const ?&\\);"
135set re_all_methods "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
136
184ad485
MC
137gdb_test_multiple "print e_instance" "print value of e_instance" {
138 -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, e = 9, ee = 10\}$nl$gdb_prompt $" {
139 pass "print value of e_instance"
140 }
141}
142
6b7a4c0e 143gdb_test_multiple "ptype e_instance" "ptype e_instance" {
184ad485
MC
144 -re "type = $re_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
145 # TODO: this is okay, just gcc abi 2
146 fail "ptype e_instance"
147 }
6b7a4c0e
MC
148 -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
149 pass "ptype e_instance"
adf40b2e 150 }
184ad485
MC
151 -re "type = $XX_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
152 # TODO: this is okay, just gcc abi 2
153 # TODO: this is a gcc bug.
154 # kfail "gdb/1498" "ptype e_instance"
155 fail "ptype e_instance"
adf40b2e 156 }
184ad485
MC
157 -re "type = $XX_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
158 # TODO: this is a gcc bug.
159 # kfail "gdb/1498" "ptype e_instance"
160 pass "ptype e_instance"
adf40b2e 161 }
6b7a4c0e
MC
162}
163
164# class F
c906108c 165
6b7a4c0e
MC
166set re_class "class F : private A, public B, private C \{${ws}public:"
167set re_fields "int f;${ws}int ff;"
168set re_methods "F\\((void|)\\);${ws}int ffoo\\((void|)\\);${ws}int foo\\((void|)\\);"
169set re_synth_gcc_23 "F & operator=\\(F const ?&\\);${ws}F\\(F const ?&\\);"
170set re_all_methods "($re_methods|$re_methods${ws}$re_synth_gcc_23|$re_synth_gcc_23${ws}$re_methods)"
171
6b7a4c0e
MC
172gdb_test_multiple "print f_instance" "print value of f_instance" {
173 -re "\\$\[0-9\]+ = \{<(class A|A)> = \{a = 1, aa = 2\}, <(class B|B)> = \{b = 3, bb = 4\}, <(class C|C)> = \{c = 5, cc = 6\}, f = 11, ff = 12\}$nl$gdb_prompt $" {
174 pass "print value of f_instance"
175 }
176}
177
184ad485
MC
178gdb_test_multiple "ptype f_instance" "ptype f_instance" {
179 -re "type = $re_class${ws}$re_fields${ws}$re_methods${ws}$re_synth_gcc_23$nl\}$nl$gdb_prompt $" {
180 # TODO: this is okay, just gcc abi 2
181 fail "ptype f_instance"
182 }
183 -re "type = $re_class${ws}$re_fields${ws}$re_all_methods$nl\}$nl$gdb_prompt $" {
184 pass "ptype f_instance"
185 }
186}
187
6b7a4c0e
MC
188# Print individual fields.
189
190gdb_test "print d_instance.a" "\\$\[0-9\]+ = 1" "print value of d_instance.a"
191gdb_test "print d_instance.aa" "\\$\[0-9\]+ = 2" "print value of d_instance.aa"
192gdb_test "print d_instance.b" "\\$\[0-9\]+ = 3" "print value of d_instance.b"
193gdb_test "print d_instance.bb" "\\$\[0-9\]+ = 4" "print value of d_instance.bb"
194gdb_test "print d_instance.c" "\\$\[0-9\]+ = 5" "print value of d_instance.c"
195gdb_test "print d_instance.cc" "\\$\[0-9\]+ = 6" "print value of d_instance.cc"
196gdb_test "print d_instance.d" "\\$\[0-9\]+ = 7" "print value of d_instance.d"
197gdb_test "print d_instance.dd" "\\$\[0-9\]+ = 8" "print value of d_instance.dd"
198
199# Print some fields which are defined in the top of class G
200# and in its base classes. This is not be ambiguous.
201
202gdb_test "print g_instance.a" "\\$\[0-9\]+ = 15" "print value of g_instance.a"
203gdb_test "print g_instance.b" "\\$\[0-9\]+ = 16" "print value of g_instance.b"
204gdb_test "print g_instance.c" "\\$\[0-9\]+ = 17" "print value of g_instance.c"
205
206# Print a function call.
207
208gdb_test "print g_instance.afoo()" "\\$\[0-9\]+ = 1" "print value of g_instance.afoo()"
5624293a
JB
209
210# If GDB fails to restore the selected frame properly after the
211# inferior function call above (see GDB PR 1155 for an explanation of
212# why this might happen), all the subsequent tests will fail. We
213# should detect report that failure, but let the marker call finish so
214# that the rest of the tests can run undisturbed.
6b7a4c0e 215
5624293a
JB
216gdb_test_multiple "frame" "re-selected 'main' frame after inferior call" {
217 -re "#0 marker1.*$gdb_prompt $" {
218 setup_kfail "gdb/1155" s390-*-linux-gnu
219 fail "re-selected 'main' frame after inferior call"
93201743 220 gdb_test "finish" ".*main.*at .*derivation.cc:.*// marker1-returns-here.*" \
5624293a
JB
221 "finish call to marker1"
222 }
223 -re "#1 ($hex in )?main.*$gdb_prompt $" {
224 pass "re-selected 'main' frame after inferior call"
225 }
226}
6b7a4c0e
MC
227
228gdb_test "print g_instance.bfoo()" "\\$\[0-9\]+ = 2" "print value of g_instance.bfoo()"
229gdb_test "print g_instance.cfoo()" "\\$\[0-9\]+ = 3" "print value of g_instance.cfoo()"
This page took 0.404503 seconds and 4 git commands to generate.