1 # Copyright
1992, 1994, 1995, 1996, 1997, 1999, 2002 Free Software
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.
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.
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.
18 # Please email
any bugs
, comments
, and
/or additions to this file to
:
19 # bug
-gdb@prep.ai.mit.edu
21 # This file was written by Fred Fish.
(fnf@cygnus.com
)
31 set binfile $
{objdir
}/$
{subdir
}/opaque
33 #
if { [gdb_compile
"${srcdir}/${subdir}/opaque0.c ${srcdir}/${subdir}/opaque1.c" "${binfile}" executable {debug}] != "" } {
34 # gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
37 if { [gdb_compile
"${srcdir}/${subdir}/opaque0.c" "${binfile}0.o" object {debug}] != "" } {
38 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
41 if { [gdb_compile
"${srcdir}/${subdir}/opaque1.c" "${binfile}1.o" object {debug}] != "" } {
42 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
45 if { [gdb_compile
"${binfile}0.o ${binfile}1.o" ${binfile} executable {debug}] != "" } {
46 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
50 # Create and source the file that provides information about the compiler
51 # used to
compile the test case.
52 if [get_compiler_info $
{binfile
}] {
56 # Start with a fresh gdb.
60 gdb_reinitialize_dir $srcdir
/$subdir
64 # Test basic opaque structure handling
(statically
).
65 # The ordering of the tests is significant. We first try the things that
66 # might fail
if gdb fails to
connect the uses of opaque structures to
67 # the actual opaque structure definition.
69 # When we start up
, gdb sets the file containing main
() as the current
70 # source file. The actual structure foo is defined in a different file.
71 # A pointer
(foop
) to an instance of the opaque struct is defined in the same
72 # source file as main
(). Ensure that gdb correctly
"connected" the definition
73 # in the other file with the pointer to the opaque struct in the file containing
76 #
Define a procedure to
set up an xfail
for all targets that
do not support
77 # this
sort of cross reference.
78 #
Any target gcc that has a DBX_NO_XREFS definition in its config file will
79 # not support it
(FIXME
: Is this still true
; I suspect maybe not
).
81 # Native alpha ecoff doesn
't support it either.
82 # I don't think this type of cross reference works
for any COFF target
85 proc setup_xfail_on_opaque_pointer
{} {
88 setup_xfail
"vax-*-*" "i*86-sequent-bsd*"
89 if {!$gcc_compiled
} then {
90 setup_xfail
"alpha-*-*" "mips-sgi-irix5*"
94 # This seems easier than trying to track different versions of xlc
; I
'm
95 # not sure there is much rhyme or reason regarding which tests it fails
96 # and which ones it passes.
97 if {[istarget "rs6000-*-aix*"] && !$gcc_compiled} then {
98 warning "xfails in opaque.exp may not be set up correctly for xlc"
101 setup_xfail_on_opaque_pointer
102 gdb_test "whatis foop" \
103 "type = struct foo \[*\]+" \
104 "whatis on opaque struct pointer (statically)"
107 # Ensure that we know the form of the structure that foop points to.
109 setup_xfail_on_opaque_pointer
110 if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" }
111 gdb_test "ptype foop" \
112 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\} \[*\]+" \
113 "ptype on opaque struct pointer (statically)"
116 # An instance of the opaque structure (afoo) is defined in a different file.
117 # Ensure that we can locate afoo and the structure definition.
119 gdb_test "whatis afoo" \
120 "type = struct foo" \
121 "whatis on opaque struct instance (statically)"
124 # Ensure that we know the form of "afoo".
126 gdb_test "ptype afoo" \
127 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
128 "ptype on opaque struct instance (statically)"
131 # Ensure that we know what a struct foo looks like.
133 gdb_test "ptype struct foo" \
134 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
135 "ptype on opaque struct tagname (statically)"
139 # Done with static tests, now test dynamic opaque structure handling.
140 # We reload the symbol table so we forget about anything we might
141 # have learned during the static tests.
144 if [istarget "mips-idt-*"] then {
145 # Restart because IDT/SIM runs out of file descriptors.
149 gdb_reinitialize_dir $srcdir/$subdir
152 # Run to main, where struct foo is incomplete.
154 perror "cannot run to breakpoint at main"
158 # The current source file is now the one containing main(). The structure foo
159 # is defined in a different file, but we have a pointer to an instance of
160 # the opaque structure in the current file. Ensure we know it's type.
162 setup_xfail_on_opaque_pointer
163 gdb_test
"whatis foop" \
164 "type = struct foo \[*\]+" \
165 "whatis on opaque struct pointer (dynamically)"
168 # Ensure that we know the form of the thing foop points to.
170 setup_xfail_on_opaque_pointer
171 if {!$gcc_compiled
} then { setup_xfail
"rs6000-*-*" }
172 gdb_test
"ptype foop" \
173 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\} \[*\]+" \
174 "ptype on opaque struct pointer (dynamically) 1"
176 gdb_test
"whatis afoo" \
177 "type = struct foo" \
178 "whatis on opaque struct instance (dynamically) 1"
181 # Ensure that we know the form of afoo
, an instance of a struct foo.
183 gdb_test
"ptype afoo" \
184 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
185 "ptype on opaque struct instance (dynamically) xyz 1"
188 # Ensure that we know the form of an explicit struct foo.
190 if {!$gcc_compiled
} then { setup_xfail
"rs6000-*-*" }
191 gdb_test
"ptype struct foo" \
192 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
193 "ptype on opaque struct tagname (dynamically) 1"
196 # Now reload the symbols again so we forget about anything we might
197 # have learned reading the symbols during the previous tests.
199 if [istarget
"mips-idt-*"] then {
200 # Restart because IDT
/SIM runs out of file descriptors.
204 gdb_reinitialize_dir $srcdir
/$subdir
207 # Run to getfoo
, where struct foo is complete.
209 perror
"cannot run to breakpoint at getfoo"
213 # Ensure that we know what foop is.
215 setup_xfail_on_opaque_pointer
216 gdb_test
"whatis foop" \
217 "type = struct foo \[*\]+" \
218 "whatis on opaque struct pointer (dynamically) 1"
221 # Ensure that we know the form of the thing foop points to.
223 setup_xfail_on_opaque_pointer
224 if {!$gcc_compiled
} then { setup_xfail
"rs6000-*-*" }
225 gdb_test
"ptype foop" \
226 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\} \[*\]+" \
227 "ptype on opaque struct pointer (dynamically) 2"
229 gdb_test
"whatis afoo" \
230 "type = struct foo" \
231 "whatis on opaque struct instance (dynamically) 1"
234 # Ensure that we know the form of afoo
, an instance of a struct foo.
236 gdb_test
"ptype afoo" \
237 "type = struct foo \{\r\n int a;\r\n int b;\r\n\}" \
238 "ptype on opaque struct instance (dynamically) 1"
240 gdb_test
"ptype afoo" \
241 "type = struct foo \{\[\r\n\]*.*int a;\[\r\n\]*.*int b;\[\r\n\]*}\[\r\n\]*" \
242 "ptype on opaque struct instance (dynamically) pqr 1"
245 # Ensure that we know the form of an explicit struct foo.
247 gdb_test
"ptype foop" \
248 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\} \[*\]+" \
249 "ptype on opaque struct pointer (dynamically) 2"
251 gdb_test
"whatis afoo" \
252 "type = struct foo" \
253 "whatis on opaque struct instance (dynamically) 2"
256 # Ensure that we know the form of afoo
, an instance of a struct foo.
258 gdb_test
"ptype afoo" \
259 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
260 "ptype on opaque struct instance (dynamically) 2"
263 # Ensure that we know the form of an explicit struct foo.
265 gdb_test
"ptype struct foo" \
266 "type = struct foo \{\[\r\n\]+ int a;\[\r\n\]+ int b;\[\r\n\]+\}" \
267 "ptype on opaque struct tagname (dynamically) 2"