OSDN Git Service

Update copyright year in most headers.
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.base / opaque.exp
1 # Copyright 1992, 1994, 1995, 1996, 1997, 1999, 2002, 2007, 2008, 2009, 2010
2 # Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>.
16
17 # This file was written by Fred Fish. (fnf@cygnus.com)
18
19 if $tracelevel then {
20         strace $tracelevel
21 }
22
23 set prms_id 0
24 set bug_id 0
25
26 set testfile "opaque"
27 set binfile ${objdir}/${subdir}/opaque
28
29 #if  { [gdb_compile "${srcdir}/${subdir}/opaque0.c ${srcdir}/${subdir}/opaque1.c" "${binfile}" executable {debug}] != "" } {
30 #     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
31 #}
32
33 if  { [gdb_compile "${srcdir}/${subdir}/opaque0.c" "${binfile}0.o" object {debug}] != "" } {
34      untested opaque.exp
35      return -1
36 }
37
38 if  { [gdb_compile "${srcdir}/${subdir}/opaque1.c" "${binfile}1.o" object {debug}] != "" } {
39      untested opaque.exp
40      return -1
41 }
42
43 if  { [gdb_compile "${binfile}0.o ${binfile}1.o" ${binfile} executable {debug}] != "" } {
44      untested opaque.exp
45      return -1
46 }
47
48
49 # Create and source the file that provides information about the compiler
50 # used to compile the test case.
51 if [get_compiler_info ${binfile}] {
52     return -1;
53 }
54
55 # Start with a fresh gdb.
56
57 gdb_exit
58 gdb_start
59 gdb_reinitialize_dir $srcdir/$subdir
60 gdb_load ${binfile}
61
62 #
63 # Test basic opaque structure handling (statically).
64 # The ordering of the tests is significant.  We first try the things that
65 # might fail if gdb fails to connect the uses of opaque structures to
66 # the actual opaque structure definition.
67
68 # When we start up, gdb sets the file containing main() as the current
69 # source file.  The actual structure foo is defined in a different file.
70 # A pointer (foop) to an instance of the opaque struct is defined in the same
71 # source file as main().  Ensure that gdb correctly "connected" the definition
72 # in the other file with the pointer to the opaque struct in the file containing
73 # "foop".
74
75 # Define a procedure to set up an xfail for all targets that do not support
76 # this sort of cross reference.
77 # Any target gcc that has a DBX_NO_XREFS definition in its config file will
78 # not support it (FIXME: Is this still true; I suspect maybe not).
79
80 # Native alpha ecoff doesn't support it either.
81 # I don't think this type of cross reference works for any COFF target
82 # either.
83
84 proc setup_xfail_on_opaque_pointer {} {
85         global gcc_compiled
86
87         setup_xfail "vax-*-*" "i*86-sequent-bsd*"
88         if {!$gcc_compiled} then {
89                 setup_xfail "alpha-*-*" "mips-sgi-irix5*"
90         }
91 }
92
93 # This seems easier than trying to track different versions of xlc; I'm
94 # not sure there is much rhyme or reason regarding which tests it fails
95 # and which ones it passes.
96 if {[istarget "rs6000-*-aix*"] && !$gcc_compiled} then {
97     warning "xfails in opaque.exp may not be set up correctly for xlc"
98 }
99
100 setup_xfail_on_opaque_pointer
101 gdb_test "whatis foop" \
102     "type = struct foo \[*\]+" \
103     "whatis on opaque struct pointer (statically)"
104
105
106 # Ensure that we know the form of the structure that foop points to.
107
108 setup_xfail_on_opaque_pointer
109 if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" }
110 gdb_test "ptype foop" \
111     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\} \[*\]+" \
112     "ptype on opaque struct pointer (statically)"
113
114
115 # An instance of the opaque structure (afoo) is defined in a different file.
116 # Ensure that we can locate afoo and the structure definition.
117
118 gdb_test "whatis afoo" \
119     "type = struct foo" \
120     "whatis on opaque struct instance (statically)"
121
122
123 # Ensure that we know the form of "afoo".
124
125 gdb_test "ptype afoo" \
126     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
127     "ptype on opaque struct instance (statically)"
128
129
130 # Ensure that we know what a struct foo looks like.
131
132 gdb_test "ptype struct foo" \
133     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
134     "ptype on opaque struct tagname (statically)"
135
136
137 #
138 # Done with static tests, now test dynamic opaque structure handling.
139 # We reload the symbol table so we forget about anything we might
140 # have learned during the static tests.
141 #
142
143 if [istarget "mips-idt-*"] then {
144     # Restart because IDT/SIM runs out of file descriptors.
145     gdb_exit
146     gdb_start
147 }
148 gdb_reinitialize_dir $srcdir/$subdir
149 gdb_load ${binfile}
150
151 # Run to main, where struct foo is incomplete.
152 if ![runto_main] {
153     perror "cannot run to breakpoint at main"
154 }
155
156
157 # The current source file is now the one containing main().  The structure foo
158 # is defined in a different file, but we have a pointer to an instance of
159 # the opaque structure in the current file.  Ensure we know it's type.
160
161 setup_xfail_on_opaque_pointer
162 gdb_test "whatis foop" \
163     "type = struct foo \[*\]+" \
164     "whatis on opaque struct pointer (dynamically)"
165
166
167 # Ensure that we know the form of the thing foop points to.
168
169 setup_xfail_on_opaque_pointer
170 if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" }
171 gdb_test "ptype foop" \
172     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\} \[*\]+" \
173     "ptype on opaque struct pointer (dynamically) 1"
174
175 gdb_test "whatis afoo" \
176     "type = struct foo" \
177     "whatis on opaque struct instance (dynamically) 1"
178
179
180 # Ensure that we know the form of afoo, an instance of a struct foo.
181
182 gdb_test "ptype afoo" \
183     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
184     "ptype on opaque struct instance (dynamically) 1"
185
186
187 # Ensure that we know the form of an explicit struct foo.
188
189 if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" }
190 gdb_test "ptype struct foo" \
191     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
192     "ptype on opaque struct tagname (dynamically) 1"
193
194
195 # Now reload the symbols again so we forget about anything we might
196 # have learned reading the symbols during the previous tests.
197
198 if [istarget "mips-idt-*"] then {
199     # Restart because IDT/SIM runs out of file descriptors.
200     gdb_exit
201     gdb_start
202 }
203 gdb_reinitialize_dir $srcdir/$subdir
204 gdb_load ${binfile}
205
206 # Run to getfoo, where struct foo is complete.
207 if ![runto getfoo] {
208     perror "cannot run to breakpoint at getfoo"
209 }
210
211
212 # Ensure that we know what foop is.
213
214 setup_xfail_on_opaque_pointer
215 gdb_test "whatis foop" \
216     "type = struct foo \[*\]+" \
217     "whatis on opaque struct pointer (dynamically) 1"
218
219
220 # Ensure that we know the form of the thing foop points to.
221
222 setup_xfail_on_opaque_pointer
223 gdb_test "ptype foop" \
224     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\} \[*\]+" \
225     "ptype on opaque struct pointer (dynamically) 2"
226
227 gdb_test "whatis afoo" \
228     "type = struct foo" \
229     "whatis on opaque struct instance (dynamically) 2"
230
231
232 # Ensure that we know the form of afoo, an instance of a struct foo.
233
234 gdb_test "ptype afoo" \
235     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
236     "ptype on opaque struct instance (dynamically) 2"
237
238
239 # Ensure that we know the form of an explicit struct foo.
240
241 gdb_test "ptype struct foo" \
242     "type = struct foo \{\[\r\n\]+    int a;\[\r\n\]+    int b;\[\r\n\]+\}" \
243     "ptype on opaque struct tagname (dynamically) 2"