Only support interworking and pic for ELF or COFF targets
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.c++ / method.exp
CommitLineData
c906108c
SS
1# Copyright (C) 1998 Free Software Foundation, Inc.
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# tests for misc. C++ method stuff
21# Written by Satish Pai <pai@apollo.hp.com> 1997-07-08
22
23# This file is part of the gdb testsuite
24
25# This tests:
26# 0. method arguments are correct
27# 1. access to class data members inside method scopes
28# 2. correct param types for methods in ptype.
29# 3. const and volatile methods
30
31# (#0 and #1 above relate to an HP specific problem -- GDB must correctly
32# integrate FPARAM symbols in HP debug info into the local var list
33# for the function or method's block.)
34
35if $tracelevel then {
36 strace $tracelevel
37 }
38
39#
40# test running programs
41#
42set prms_id 0
43set bug_id 0
44
45set testfile "method"
46set srcfile ${testfile}.cc
47set binfile ${objdir}/${subdir}/${testfile}
48
49if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
50 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
51}
52
a0b3c4fd
JM
53if [get_compiler_info $binfile "c++"] {
54 return -1
55}
c906108c
SS
56
57gdb_exit
58gdb_start
59gdb_reinitialize_dir $srcdir/$subdir
60gdb_load ${binfile}
61
62
63#
64# set it up at a breakpoint so we can play with the variable values
65#
66if ![runto_main] then {
67 perror "couldn't run to breakpoint"
68 continue
69}
70
71send_gdb "break A::foo\n"
72gdb_expect {
73 -re "Breakpoint \[0-9\]* at $hex.*file .*method.cc, line 38*\\.\r\n$gdb_prompt $" {
74 pass "set breakpoint on A::foo"
75 }
76 -re ".*$gdb_prompt $" { fail "set breakpoint on A::foo" }
77 timeout { fail "(timeout) set breakpoint on A::foo" }
78}
79
80send_gdb "continue\n"
81gdb_expect {
82 -re "Continuing\\.\r\n\r\nBreakpoint \[0-9\]*, A::foo \\(this=$hex, arg=13\\) at .*method\\.cc:38\r\n38\[\t \]*x \\+= arg;\r\n$gdb_prompt $" {
83 pass "continued and got breakpoint in A::foo"
84 }
85 -re ".*$gdb_prompt $" { fail "continuing and breaking in A::foo" }
86 timeout { fail "(timeout) continue" }
87}
88
89# Check ability to access this-relative stuff.
90
91send_gdb "print x\n"
92gdb_expect {
93 -re "\\$\[0-9\]* = 20\r\n$gdb_prompt $" {
94 pass "access this-relative x (in foo)"
95 }
96 -re ".*$gdb_prompt $" { fail "print x (in foo)" }
97 timeout { fail "(timeout) print x (in foo)" }
98}
99
100# Check access to this pointer
101
102send_gdb "print this\n"
103gdb_expect {
104 -re "\\$\[0-9\]* = \\(A \\*\\) $hex\r\n$gdb_prompt $" {
105 pass "print this (in foo)"
106 }
107 -re ".*$gdb_prompt $" { fail "print this (in foo)" }
108 timeout { fail "(timeout) print this (in foo)" }
109}
110
111# Now do everything over again for A::bar, because sometimes processing one method
112# (the first one) is fine, but the second one's debug info gets munged beyond recognition.
113
114send_gdb "break A::bar\n"
115gdb_expect {
116 -re "Breakpoint \[0-9\]* at $hex.*file .*method.cc, line 44\\.\r\n$gdb_prompt $" {
117 pass "set breakpoint on A::bar"
118 }
119 -re ".*$gdb_prompt $" { fail "set breakpoint on A::bar" }
120 timeout { fail "(timeout) set breakpoint on A::bar" }
121}
122
123send_gdb "continue\n"
124gdb_expect {
125 -re "Continuing\\.\r\n\r\nBreakpoint \[0-9\]*, A::bar \\(this=$hex, arg=15\\) at .*method\\.cc:44\r\n44\[\t \]*return arg \\+ 2 \\* x;\r\n$gdb_prompt $" {
126 pass "continued and got breakpoint in A::bar"
127 }
128 -re ".*$gdb_prompt $" { fail "continuing and breaking in A::bar" }
129 timeout { fail "(timeout) continue" }
130}
131
132# Check ability to access this-relative stuff.
133
134send_gdb "print x\n"
135gdb_expect {
136 -re "\\$\[0-9\]* = 33\r\n$gdb_prompt $" {
137 pass "access this-relative x (in bar)"
138 }
139 -re ".*$gdb_prompt $" { fail "print x (in bar)" }
140 timeout { fail "(timeout) print x (in bar)" }
141}
142
143# Check access to this pointer
144
145send_gdb "print this\n"
146gdb_expect {
147 -re "\\$\[0-9\]* = \\(const class A \\*\\) $hex\r\n$gdb_prompt $" {
a0b3c4fd
JM
148 global gcc_compiled
149 if {$gcc_compiled} {
150 xfail "print this (in bar)"
151 } else {
152 pass "print this (in bar)"
153 }
154 }
155 -re "\\$\[0-9\]* = \\(A \\*\\) $hex\r\n$gdb_prompt $" {
156 global gcc_compiled
157 if {$gcc_compiled} {
c906108c 158 pass "print this (in bar)"
a0b3c4fd
JM
159 } else {
160 xfail "print this (in bar)"
161 }
c906108c
SS
162 }
163 -re ".*$gdb_prompt $" { fail "print this (in bar)" }
164 timeout { fail "(timeout) print this (in bar)" }
165}
166
167# Check again with funk::getFunky (this is the original test case
168# for CHFts23426); sometimes having a constructor with no arguments
169# will nuke the debug info read in for other methods in the class.
170
171send_gdb "break funk::getFunky\n"
172gdb_expect {
173 -re "Breakpoint \[0-9\]* at $hex.*file .*method.cc, line 20\\.\r\n$gdb_prompt $" {
174 pass "set breakpoint on funk::getFunky"
175 }
176 -re ".*$gdb_prompt $" { fail "set breakpoint on funk::getfunky" }
177 timeout { fail "(timeout) set breakpoint on funk::getfunky" }
178}
179
180send_gdb "continue\n"
181gdb_expect {
182 -re "Continuing\\.\r\n\r\nBreakpoint \[0-9\]*, funk::getFunky \\(this=$hex, a=1, b=2\\) at .*method\\.cc:20\r\n20\[\t \]*res = a \\+ b - data_;\r\n$gdb_prompt $" {
183 pass "continued and got breakpoint in funk::getfunky"
184 }
185 -re ".*$gdb_prompt $" { fail "continuing and breaking in funk::getfunky" }
186 timeout { fail "(timeout) continue" }
187}
188
189# Check ability to access this-relative stuff.
190
191send_gdb "print data_\n"
192gdb_expect {
193 -re "\\$\[0-9\]* = 33\r\n$gdb_prompt $" {
194 pass "access this-relative data_ in getFunky"
195 }
196 -re ".*$gdb_prompt $" { fail "print data_ in getFunky" }
197 timeout { fail "(timeout) print data_ in getFunky" }
198}
199
200# Check access to this pointer
201
202send_gdb "print this\n"
203gdb_expect {
204 -re "\\$\[0-9\]* = \\(funk \\*\\) $hex\r\n$gdb_prompt $" {
205 pass "print this in getFunky"
206 }
207 -re ".*$gdb_prompt $" { fail "print this in getfunky" }
208 timeout { fail "(timeout) print this in getfunky" }
209}
210
211# Check access to local variable
212
213send_gdb "print res\n"
214gdb_expect {
7a292a7a 215 -re "\\$\[0-9\]* = .\[0-9\]*\r\n$gdb_prompt $" {
c906108c
SS
216 pass "print res in getFunky"
217 }
218 -re ".*$gdb_prompt $" { fail "print res in getfunky" }
219 timeout { fail "(timeout) print res in getfunky" }
220}
221
222
223# Check ptype of class -- should show const/volatile methods
224
225send_gdb "ptype A\n"
226gdb_expect {
a0b3c4fd 227 -re "type = class A \{\r\n\[ \]*public:\r\n\[ \]*int x;\r\n\[ \]*int y;\r\n\r\n\[ \]*A & operator=\\(A const &\\);\r\n\[ \]*A\\(A const &\\);\r\n\[ \]*A\\(void\\);\r\n\[ \]*int foo\\(int\\);\r\n\[ \]*int bar\\(int\\) const;\r\n\[ \]*int baz\\(int, char\\) volatile;\r\n\[ \]*int qux\\(int, float\\) const volatile;\r\n\}\r\n$gdb_prompt $" {
c906108c
SS
228 pass "ptype A"
229 }
230 -re "type = class A \{\r\n\[ \]*public:\r\n\[ \]*int x;\r\n\[ \]*int y;\r\n\r\n\[ \]*int foo\\(int\\);\r\n\[ \]*int bar\\(int\\) const;\r\n\[ \]*int baz\\(int, char\\);\r\n\[ \]*int qux\\(int, float\\) const;\r\n\}\r\n$gdb_prompt $" {
231 pass "ptype A (HP aCC bug -- volatile not indicated)"
232 }
233 -re "type = class A \{\r\n\[ \]*public:\r\n\[ \]*int x;\r\n\[ \]*int y;\r\n\r\n\[ \]*int foo\\(int\\);\r\n\[ \]*int bar\\(int\\) const;\r\n\[ \]*int baz\\(int, char\\) volatile;\r\n\[ \]*int qux\\(int, float\\) const volatile;\r\n\}\r\n$gdb_prompt $" {
234 pass "ptype A"
235 }
236 -re ".*$gdb_prompt $" { fail "ptype A" }
237 timeout { fail "(timeout) ptype A" }
238}
239
240send_gdb "cont\n"
241gdb_expect {
242 -re "Continuing.\r\n\r\nProgram exited normally.\r\n$gdb_prompt $" {
243 pass "finish program"
244 }
245 -re "$gdb_prompt $" { fail "finish program" }
246 timeout { fail "(timeout) finish program" }
247}
248
This page took 0.043285 seconds and 4 git commands to generate.