1 # Copyright
(C
) 2001 Free Software Foundation
, Inc.
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.
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.
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.
17 # Please email
any bugs
, comments
, and
/or additions to this file to
:
18 # bug
-gdb@prep.ai.mit.edu
20 # Written by Michael Snyder
, Red Hat
, Inc.
, 9/20/2001
22 # This file is part of the gdb testsuite
23 # Tests
for type expressions using the new
"@code" and "@data" modifiers.
30 # test running programs
36 set srcfile $
{testfile
}.c
37 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
39 if { [gdb_compile
"${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
40 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
45 gdb_reinitialize_dir $srcdir
/$subdir
48 if [target_info
exists gdb_stub
] {
52 gdb_test
"set print sevenbit-strings" "" ""
53 gdb_test
"set print address off" "" ""
54 gdb_test
"set width 0" "" ""
59 # Test casting a scalar to const
62 gdb_test
"whatis (@code char) v_char" \
65 gdb_test
"whatis (@code signed char) v_signed_char" \
66 "type = @code signed char" \
68 gdb_test
"whatis (@code unsigned char) v_unsigned_char" \
69 "type = @code (unsigned char|char)" \
70 "(@code unsigned char)"
71 gdb_test
"whatis (@code short) v_short" \
72 "type = @code (short|short int)" \
74 gdb_test
"whatis (@code signed short) v_signed_short" \
75 "type = @code (short|short int|signed short|signed short int)" \
76 "(@code signed short)"
77 gdb_test
"whatis (@code unsigned short) v_unsigned_short" \
78 "type = @code (unsigned short|short unsigned int)" \
79 "(@code unsigned short)"
80 gdb_test
"whatis (@code int) v_int" \
83 gdb_test
"whatis (@code signed int) v_signed_int" \
84 "type = @code (signed int|int)" \
86 gdb_test
"whatis (@code unsigned int) v_unsigned_int" \
87 "type = @code unsigned int" \
88 "(@code unsigned int)"
89 gdb_test
"whatis (@code long) v_long" \
90 "type = @code (long|long int)" \
92 gdb_test
"whatis (@code signed long) v_signed_long" \
93 "type = @code (signed |)long( int|)" \
95 gdb_test
"whatis (@code unsigned long) v_unsigned_long" \
96 "type = @code (unsigned long|long unsigned int)" \
97 "(@code unsigned long)"
98 gdb_test
"whatis (@code long long) v_long_long" \
99 "type = @code long long( int|)" \
101 gdb_test
"whatis (@code signed long long) v_signed_long_long" \
102 "type = @code (signed |)long long( int|)" \
103 "(@code signed long long)"
104 gdb_test
"whatis (@code unsigned long long) v_unsigned_long_long" \
105 "type = @code (unsigned long long|long long unsigned int)" \
106 "(@code unsigned long long)"
107 gdb_test
"whatis (@code float) v_float" \
108 "type = @code float" \
110 gdb_test
"whatis (@code double) v_double" \
111 "type = @code double" \
115 # Test casting a scalar to @data
118 gdb_test
"whatis (@data char) v_char" \
119 "type = @data char" \
121 gdb_test
"whatis (@data signed char) v_signed_char" \
122 "type = @data signed char" \
123 "(@data signed char)"
124 gdb_test
"whatis (@data unsigned char) v_unsigned_char" \
125 "type = @data (unsigned char|char)" \
126 "(@data unsigned char)"
127 gdb_test
"whatis (@data short) v_short" \
128 "type = @data (short|short int)" \
130 gdb_test
"whatis (@data signed short) v_signed_short" \
131 "type = @data (short|short int|signed short|signed short int)" \
132 "(@data signed short)"
133 gdb_test
"whatis (@data unsigned short) v_unsigned_short" \
134 "type = @data (unsigned short|short unsigned int)" \
135 "(@data unsigned short)"
136 gdb_test
"whatis (@data int) v_int" \
139 gdb_test
"whatis (@data signed int) v_signed_int" \
140 "type = @data (signed int|int)" \
142 gdb_test
"whatis (@data unsigned int) v_unsigned_int" \
143 "type = @data unsigned int" \
144 "(@data unsigned int)"
145 gdb_test
"whatis (@data long) v_long" \
146 "type = @data (long|long int)" \
148 gdb_test
"whatis (@data signed long) v_signed_long" \
149 "type = @data (signed |)long( int|)" \
150 "(@data signed long)"
151 gdb_test
"whatis (@data unsigned long) v_unsigned_long" \
152 "type = @data (unsigned long|long unsigned int)" \
153 "(@data unsigned long)"
154 gdb_test
"whatis (@data long long) v_long_long" \
155 "type = @data long long( int|)" \
157 gdb_test
"whatis (@data signed long long) v_signed_long_long" \
158 "type = @data (signed |)long long( int|)" \
159 "(@data signed long long)"
160 gdb_test
"whatis (@data unsigned long long) v_unsigned_long_long" \
161 "type = @data (unsigned long long|long long unsigned int)" \
162 "(@data unsigned long long)"
163 gdb_test
"whatis (@data float) v_float" \
164 "type = @data float" \
166 gdb_test
"whatis (@data double) v_double" \
167 "type = @data double" \
171 # Now put the
'@code' and
'@data' keywords after the base type.
174 gdb_test
"whatis (char @code) v_char" \
175 "type = @code char" \
177 gdb_test
"whatis (signed char @code) v_signed_char" \
178 "type = @code signed char" \
179 "(signed char @code)"
180 gdb_test
"whatis (unsigned char @code) v_unsigned_char" \
181 "type = @code (unsigned char|char)" \
182 "(unsigned char @code)"
183 gdb_test
"whatis (short @code) v_short" \
184 "type = @code (short|short int)" \
186 gdb_test
"whatis (signed short @code) v_signed_short" \
187 "type = @code (short|short int|signed short|signed short int)" \
188 "(signed short @code)"
189 gdb_test
"whatis (unsigned short @code) v_unsigned_short" \
190 "type = @code (unsigned short|short unsigned int)" \
191 "(unsigned short @code)"
192 gdb_test
"whatis (int @code) v_int" \
195 gdb_test
"whatis (signed int @code) v_signed_int" \
196 "type = @code (signed int|int)" \
198 gdb_test
"whatis (unsigned int @code) v_unsigned_int" \
199 "type = @code unsigned int" \
200 "(unsigned int @code)"
201 gdb_test
"whatis (long @code) v_long" \
202 "type = @code (long|long int)" \
204 gdb_test
"whatis (signed long @code) v_signed_long" \
205 "type = @code (signed |)long( int|)" \
206 "(signed long @code)"
207 gdb_test
"whatis (unsigned long @code) v_unsigned_long" \
208 "type = @code (unsigned long|long unsigned int)" \
209 "(unsigned long @code)"
210 gdb_test
"whatis (long long @code) v_long_long" \
211 "type = @code long long( int|)" \
213 gdb_test
"whatis (signed long long @code) v_signed_long_long" \
214 "type = @code (signed |)long long( int|)" \
215 "(signed long long @code)"
216 gdb_test
"whatis (unsigned long long @code) v_unsigned_long_long" \
217 "type = @code (unsigned long long|long long unsigned int)" \
218 "(unsigned long long @code)"
219 gdb_test
"whatis (float @code) v_float" \
220 "type = @code float" \
222 gdb_test
"whatis (double @code) v_double" \
223 "type = @code double" \
226 gdb_test
"whatis (char @data) v_char" \
227 "type = @data char" \
229 gdb_test
"whatis (signed char @data) v_signed_char" \
230 "type = @data signed char" \
231 "(signed char @data)"
232 gdb_test
"whatis (unsigned char @data) v_unsigned_char" \
233 "type = @data (unsigned char|char)" \
234 "(unsigned char @data)"
235 gdb_test
"whatis (short @data) v_short" \
236 "type = @data (short|short int)" \
238 gdb_test
"whatis (signed short @data) v_signed_short" \
239 "type = @data (short|short int|signed short|signed short int)" \
240 "(signed short @data)"
241 gdb_test
"whatis (unsigned short @data) v_unsigned_short" \
242 "type = @data (unsigned short|short unsigned int)" \
243 "(unsigned short @data)"
244 gdb_test
"whatis (int @data) v_int" \
247 gdb_test
"whatis (signed int @data) v_signed_int" \
248 "type = @data (signed int|int)" \
250 gdb_test
"whatis (unsigned int @data) v_unsigned_int" \
251 "type = @data unsigned int" \
252 "(unsigned int @data)"
253 gdb_test
"whatis (long @data) v_long" \
254 "type = @data (long|long int)" \
256 gdb_test
"whatis (signed long @data) v_signed_long" \
257 "type = @data (signed |)long( int|)" \
258 "(signed long @data)"
259 gdb_test
"whatis (unsigned long @data) v_unsigned_long" \
260 "type = @data (unsigned long|long unsigned int)" \
261 "(unsigned long @data)"
262 gdb_test
"whatis (long long @data) v_long_long" \
263 "type = @data long long( int|)" \
265 gdb_test
"whatis (signed long long @data) v_signed_long_long" \
266 "type = @data (signed |)long long( int|)" \
267 "(signed long long @data)"
268 gdb_test
"whatis (unsigned long long @data) v_unsigned_long_long" \
269 "type = @data (unsigned long long|long long unsigned int)" \
270 "(unsigned long long @data)"
271 gdb_test
"whatis (float @data) v_float" \
272 "type = @data float" \
274 gdb_test
"whatis (double @data) v_double" \
275 "type = @data double" \
282 gdb_test
"whatis (@code enum misordered) v_misordered" \
283 "type = @code enum misordered" \
284 "(@code enum misordered)"
285 gdb_test
"whatis (enum misordered @code) v_misordered" \
286 "type = @code enum misordered" \
287 "(enum misordered @code)"
288 gdb_test
"whatis (@data enum misordered) v_misordered" \
289 "type = @data enum misordered" \
290 "(@data enum misordered)"
291 gdb_test
"whatis (enum misordered @data) v_misordered" \
292 "type = @data enum misordered" \
293 "(enum misordered @data)"
299 gdb_test
"whatis (@code int *) v_int_pointer" \
300 "type = @code int${ws}\\*" \
302 gdb_test
"whatis (int @code *) v_int_pointer" \
303 "type = @code int${ws}\\*" \
305 gdb_test
"whatis (int * @code) v_int_pointer" \
306 "type = int \\*${ws}@code" \
308 gdb_test
"whatis (@code int * @code) v_int_pointer" \
309 "type = @code int${ws}\\*${ws}@code" \
310 "(@code int * @code)"
311 gdb_test
"whatis (int @code * @code) v_int_pointer" \
312 "type = @code int${ws}\\*${ws}@code" \
313 "(int @code * @code)"
315 gdb_test
"whatis (@code int **) v_int_pointer_pointer" \
316 "type = @code int${ws}\\*${ws}\\*" \
318 gdb_test
"whatis (int @code **) v_int_pointer_pointer" \
319 "type = @code int${ws}\\*${ws}\\*" \
321 gdb_test
"whatis (int ** @code) v_int_pointer_pointer" \
322 "type = int \\*${ws}\\*${ws}@code" \
324 gdb_test
"whatis (@code int * @code *) v_int_pointer_pointer" \
325 "type = @code int${ws}\\*${ws}@code${ws}\\*" \
326 "(@code int * @code *)"
327 gdb_test
"whatis (int @code * @code *) v_int_pointer_pointer" \
328 "type = @code int${ws}\\*${ws}@code${ws}\\*" \
329 "(int @code * @code *)"
330 gdb_test
"whatis (@code int * @code * @code) v_int_pointer_pointer" \
331 "type = @code int${ws}\\*${ws}@code${ws}\\*${ws}@code" \
332 "(@code int * @code * @code)"
333 gdb_test
"whatis (int @code * @code * @code) v_int_pointer_pointer" \
334 "type = @code int${ws}\\*${ws}@code${ws}\\*${ws}@code" \
335 "(int @code * @code * @code)"
342 # Pointers to arrays
, arrays of pointers TODO
349 gdb_test
"whatis (@code struct t_struct) v_struct1" \
350 "type = @code struct t_struct" \
351 "(@code struct t_struct)"
352 gdb_test
"whatis (@code union t_union) v_union" \
353 "type = @code union t_union" \
354 "(@code union t_union)"
355 gdb_test
"whatis (struct t_struct @code) v_struct1" \
356 "type = @code struct t_struct" \
357 "(struct t_struct @code)"
358 gdb_test
"whatis (union t_union @code) v_union" \
359 "type = @code union t_union" \
360 "(union t_union @code)"
361 gdb_test
"whatis (@code struct t_struct *) &v_struct1" \
362 "type = @code struct t_struct${ws}\\*" \
363 "(@code struct t_struct *)"
364 gdb_test
"whatis (@code union t_union *) &v_union" \
365 "type = @code union t_union${ws}\\*" \
366 "(@code union t_union *)"
367 gdb_test
"whatis (struct t_struct @code *) &v_struct1" \
368 "type = @code struct t_struct${ws}\\*" \
369 "(struct t_struct @code *)"
370 gdb_test
"whatis (union t_union @code *) &v_union" \
371 "type = @code union t_union${ws}\\*" \
372 "(union t_union @code *)"
373 gdb_test
"whatis (struct t_struct * @code) &v_struct1" \
374 "type = struct t_struct${ws}\\*${ws}@code" \
375 "(struct t_struct * @code)"
376 gdb_test
"whatis (union t_union * @code) &v_union" \
377 "type = union t_union${ws}\\*${ws}@code" \
378 "(union t_union * @code)"
379 gdb_test
"whatis (@code struct t_struct * @code) &v_struct1" \
380 "type = @code struct t_struct${ws}\\*${ws}@code" \
381 "(@code struct t_struct * @code)"
382 gdb_test
"whatis (@code union t_union * @code) &v_union" \
383 "type = @code union t_union${ws}\\*${ws}@code" \
384 "(@code union t_union * @code)"
385 gdb_test
"whatis (struct t_struct @code * @code) &v_struct1" \
386 "type = @code struct t_struct${ws}\\*${ws}@code" \
387 "(struct t_struct @code * @code)"
388 gdb_test
"whatis (union t_union @code * @code) &v_union" \
389 "type = @code union t_union${ws}\\*${ws}@code" \
390 "(union t_union @code * @code)"
393 # Function pointers TODO