]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/whatis.exp
Delete IRIX support
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / whatis.exp
CommitLineData
ecd75fc8 1# Copyright 1988-2014 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Rob Savoye. (rob@cygnus.com)
17
c906108c
SS
18#
19# test running programs
20#
c906108c 21
64b2fa04
PA
22if [target_info exists no_long_long] {
23 set exec_opts [list debug additional_flags=-DNO_LONG_LONG]
24} else {
25 set exec_opts [list debug]
26}
27
62cef515
TT
28standard_testfile .c
29
64b2fa04 30if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable $exec_opts] != "" } {
b60f0898
JB
31 untested whatis.exp
32 return -1
c906108c
SS
33}
34
35# Create and source the file that provides information about the compiler
36# used to compile the test case.
4c93b1db 37if [get_compiler_info] {
ae59b1da 38 return -1
c906108c
SS
39}
40
41# Start with a fresh gdb.
42
62cef515 43clean_restart $binfile
c906108c 44
c906108c
SS
45# Define a procedure to set up an xfail for all targets that put out a
46# `long' type as an `int' type.
47# Sun/Ultrix cc have this problem.
48# It was said that COFF targets can not distinguish int from long either.
49
50proc setup_xfail_on_long_vs_int {} {
51 global gcc_compiled
52
53 if {!$gcc_compiled} {
54 setup_xfail "*-sun-sunos4*" "*-*-ultrix*" "i*86-sequent-bsd*"
55 }
56}
57
58#
59# Test whatis command with basic C types
60#
61# The name printed now (as of 23 May 1993) is whatever name the compiler
62# uses in the stabs. So we need to deal with names both from gcc and
63# native compilers.
64#
085dd6e6 65
c906108c
SS
66gdb_test "whatis v_char" \
67 "type = (unsigned char|char)" \
68 "whatis char"
69
c906108c 70gdb_test "whatis v_signed_char" \
d782e0bf 71 "type = (signed char|char)" \
c906108c
SS
72 "whatis signed char"
73
74gdb_test "whatis v_unsigned_char" \
75 "type = unsigned char" \
76 "whatis unsigned char"
77
78gdb_test "whatis v_short" \
79 "type = (short|short int)" \
80 "whatis short"
81
82gdb_test "whatis v_signed_short" \
83 "type = (short|short int|signed short|signed short int)" \
84 "whatis signed short"
85
86gdb_test "whatis v_unsigned_short" \
87 "type = (unsigned short|short unsigned int)" \
88 "whatis unsigned short"
89
90gdb_test "whatis v_int" \
91 "type = int" \
92 "whatis int"
93
94gdb_test "whatis v_signed_int" \
95 "type = (signed |)int" \
96 "whatis signed int"
97
98gdb_test "whatis v_unsigned_int" \
99 "type = unsigned int" \
100 "whatis unsigned int"
101
102setup_xfail_on_long_vs_int
103# AIX xlc gets this wrong and unsigned long right. Go figure.
104if {!$gcc_compiled} then {setup_xfail "rs6000-*-aix*"}
105gdb_test "whatis v_long" \
106 "type = (long|long int)" \
107 "whatis long"
108
109setup_xfail_on_long_vs_int
110# AIX xlc gets this wrong and unsigned long right. Go figure.
111if {!$gcc_compiled} then {setup_xfail "rs6000-*-aix*"}
112gdb_test "whatis v_signed_long" \
113 "type = (signed |)(long|long int)" \
114 "whatis signed long"
115
116setup_xfail_on_long_vs_int
117gdb_test "whatis v_unsigned_long" \
118 "type = (unsigned long|long unsigned int)" \
119 "whatis unsigned long"
120
64b2fa04
PA
121
122if ![target_info exists no_long_long] {
123 gdb_test "whatis v_unsigned_long_long" \
124 "type = (unsigned long long|long long unsigned int)" \
125 "whatis unsigned long long"
126}
127
c906108c
SS
128gdb_test "whatis v_float" \
129 "type = float" \
130 "whatis float"
131
132gdb_test "whatis v_double" \
133 "type = double" \
134 "whatis double"
135
136
137# test whatis command with arrays
138#
139# We already tested whether char prints as "char", so here we accept
140# "unsigned char", "signed char", and other perversions. No need for more
141# than one xfail for the same thing.
142gdb_test "whatis v_char_array" \
143 "type = (signed |unsigned |)char \\\[2\\\]" \
144 "whatis char array"
145
146gdb_test "whatis v_signed_char_array" \
147 "type = (signed |unsigned |)char \\\[2\\\]" \
148 "whatis signed char array"
149
150gdb_test "whatis v_unsigned_char_array" \
151 "type = unsigned char \\\[2\\\]" \
152 "whatis unsigned char array"
153
154gdb_test "whatis v_short_array" \
155 "type = (short|short int) \\\[2\\\]" \
156 "whatis short array"
157
158gdb_test "whatis v_signed_short_array" \
159 "type = (signed |)(short|short int) \\\[2\\\]" \
160 "whatis signed short array"
161
162gdb_test "whatis v_unsigned_short_array" \
163 "type = (unsigned short|short unsigned int) \\\[2\\\]" \
164 "whatis unsigned short array"
165
166gdb_test "whatis v_int_array" \
167 "type = int \\\[2\\\]" \
168 "whatis int array"
169
170gdb_test "whatis v_signed_int_array" \
171 "type = (signed |)int \\\[2\\\]" \
172 "whatis signed int array"
173
174gdb_test "whatis v_unsigned_int_array" \
175 "type = unsigned int \\\[2\\\]" \
176 "whatis unsigned int array"
177
178# We already tested whether long prints as long, so here we accept int
179# No need for more than one xfail for the same thing.
180gdb_test "whatis v_long_array" \
181 "type = (int|long|long int) \\\[2\\\]" \
182 "whatis long array"
183
184gdb_test "whatis v_signed_long_array" \
185 "type = (signed |)(int|long|long int) \\\[2\\\]" \
186 "whatis signed long array"
187
188gdb_test "whatis v_unsigned_long_array" \
189 "type = (unsigned (int|long|long int)|long unsigned int) \\\[2\\\]" \
190 "whatis unsigned long array"
191
64b2fa04
PA
192if ![target_info exists no_long_long] {
193 gdb_test "whatis v_unsigned_long_long_array" \
194 "type = (unsigned long long|long long unsigned int) \\\[2\\\]" \
195 "whatis unsigned long array"
196}
197
c906108c
SS
198gdb_test "whatis v_float_array" \
199 "type = float \\\[2\\\]" \
200 "whatis float array"
201
202gdb_test "whatis v_double_array" \
203 "type = double \\\[2\\\]" \
204 "whatis double array"
205
206
207# test whatis command with pointers
208#
209# We already tested whether char prints as char, so accept various perversions
210# here. We especially want to make sure we test that it doesn't print as
211# caddr_t.
212gdb_test "whatis v_char_pointer" \
213 "type = (unsigned |signed |)char \\*" \
214 "whatis char pointer"
215
216gdb_test "whatis v_signed_char_pointer" \
217 "type = (unsigned |signed |)char \\*" \
218 "whatis signed char pointer"
219
220gdb_test "whatis v_unsigned_char_pointer" \
221 "type = unsigned char \\*" \
222 "whatis unsigned char pointer"
223
224gdb_test "whatis v_short_pointer" \
225 "type = (short|short int) \\*" \
226 "whatis short pointer"
227
228gdb_test "whatis v_signed_short_pointer" \
229 "type = (signed |)(short|short int) \\*" \
230 "whatis signed short pointer"
231
232gdb_test "whatis v_unsigned_short_pointer" \
233 "type = (unsigned short|short unsigned int) \\*" \
234 "whatis unsigned short pointer"
235
236gdb_test "whatis v_int_pointer" \
237 "type = int \\*" \
238 "whatis int pointer"
239
240gdb_test "whatis v_signed_int_pointer" \
241 "type = (signed |)int \\*" \
242 "whatis signed int pointer"
243
244gdb_test "whatis v_unsigned_int_pointer" \
245 "type = unsigned int \\*" \
246 "whatis unsigned int pointer"
247
248# We already tested whether long prints as long, so here we accept int
249gdb_test "whatis v_long_pointer" \
250 "type = (long|int|long int) \\*" \
251 "whatis long pointer"
252
253gdb_test "whatis v_signed_long_pointer" \
254 "type = (signed |)(long|int|long int) \\*" \
255 "whatis signed long pointer"
256
257gdb_test "whatis v_unsigned_long_pointer" \
258 "type = (unsigned (int|long|long int)|long unsigned int) \\*" \
259 "whatis unsigned long pointer"
260
64b2fa04
PA
261if ![target_info exists no_long_long] {
262 gdb_test "whatis v_long_long_pointer" \
263 "type = long long(| int) \\*" \
264 "whatis long long pointer"
265
266 gdb_test "whatis v_signed_long_long_pointer" \
267 "type = (signed |)long long(| int) \\*" \
268 "whatis signed long long pointer"
269
270 gdb_test "whatis v_unsigned_long_long_pointer" \
271 "type = (unsigned long long|long long unsigned int) \\*" \
272 "whatis unsigned long long pointer"
273}
274
c906108c
SS
275gdb_test "whatis v_float_pointer" \
276 "type = float \\*" \
277 "whatis float pointer"
278
279gdb_test "whatis v_double_pointer" \
280 "type = double \\*" \
281 "whatis double pointer"
282
283
085dd6e6
JM
284if { $hp_aCC_compiler } {
285 set unstruct "unnamed\.struct\..*"
286 set ununion "unnamed\.union\..*"
287} else {
288 set unstruct "\.\.\."
289 set ununion "\.\.\."
290}
291
c906108c
SS
292# test whatis command with structure types
293gdb_test "whatis v_struct1" \
294 "type = struct t_struct" \
295 "whatis named structure"
296
f8261448
FF
297gdb_test "whatis struct t_struct" \
298 "type = struct t_struct" \
299 "whatis named structure using type name"
300
c906108c 301gdb_test "whatis v_struct2" \
085dd6e6 302 "type = struct \{$unstruct\}" \
c906108c
SS
303 "whatis unnamed structure"
304
305
306# test whatis command with union types
307gdb_test "whatis v_union" \
308 "type = union t_union" \
309 "whatis named union"
310
f8261448
FF
311gdb_test "whatis union t_union" \
312 "type = union t_union" \
313 "whatis named union using type name"
314
c906108c 315gdb_test "whatis v_union2" \
085dd6e6 316 "type = union \{$ununion\}" \
c906108c
SS
317 "whatis unnamed union"
318
319
1e698235
DJ
320# HP-UX: HP aCC compiler w/ +objdebug option detects language as
321# c++, so we need the 'void' pattern here.
322# Without +objdebug compilation option we still need to match ''.
323# - guo
324# Also, using stabs we will mark these functions as prototyped. This
325# is harmless but causes an extra VOID to be printed.
326set void "(void|)"
c906108c
SS
327
328# test whatis command with functions return type
329gdb_test "whatis v_char_func" \
085dd6e6 330 "type = (signed |unsigned |)char \\($void\\)" \
c906108c
SS
331 "whatis char function"
332
333gdb_test "whatis v_signed_char_func" \
085dd6e6 334 "type = (signed |unsigned |)char \\($void\\)" \
c906108c
SS
335 "whatis signed char function"
336
337gdb_test "whatis v_unsigned_char_func" \
085dd6e6 338 "type = unsigned char \\($void\\)" \
c906108c
SS
339 "whatis unsigned char function"
340
341gdb_test "whatis v_short_func" \
085dd6e6 342 "type = short (int |)\\($void\\)" \
c906108c
SS
343 "whatis short function"
344
345gdb_test "whatis v_signed_short_func" \
085dd6e6 346 "type = (signed |)short (int |)\\($void\\)" \
c906108c
SS
347 "whatis signed short function"
348
349gdb_test "whatis v_unsigned_short_func" \
085dd6e6 350 "type = (unsigned short|short unsigned int) \\($void\\)" \
c906108c
SS
351 "whatis unsigned short function"
352
353gdb_test "whatis v_int_func" \
085dd6e6 354 "type = int \\($void\\)" \
c906108c
SS
355 "whatis int function"
356
357gdb_test "whatis v_signed_int_func" \
085dd6e6 358 "type = (signed |)int \\($void\\)" \
c906108c
SS
359 "whatis signed int function"
360
361gdb_test "whatis v_unsigned_int_func" \
085dd6e6 362 "type = unsigned int \\($void\\)" \
c906108c
SS
363 "whatis unsigned int function"
364
365gdb_test "whatis v_long_func" \
085dd6e6 366 "type = (long|int|long int) \\($void\\)" \
c906108c
SS
367 "whatis long function"
368
369gdb_test "whatis v_signed_long_func" \
085dd6e6 370 "type = (signed |)(int|long|long int) \\($void\\)" \
c906108c
SS
371 "whatis signed long function"
372
373gdb_test "whatis v_unsigned_long_func" \
085dd6e6 374 "type = (unsigned (int|long|long int)|long unsigned int) \\($void\\)" \
c906108c
SS
375 "whatis unsigned long function"
376
64b2fa04
PA
377if ![target_info exists no_long_long] {
378 gdb_test "whatis v_long_long_func" \
379 "type = long long(| int) \\($void\\)" \
380 "whatis long long function"
381
382 gdb_test "whatis v_signed_long_long_func" \
383 "type = (signed |)long long(| int) \\($void\\)" \
384 "whatis signed long long function"
385
386 gdb_test "whatis v_unsigned_long_long_func" \
387 "type = (unsigned long long(| int)|long long unsigned int) \\($void\\)" \
388 "whatis unsigned long long function"
389}
390
c906108c
SS
391# Sun /bin/cc calls this a function returning double.
392if {!$gcc_compiled} then {setup_xfail "*-sun-sunos4*"}
393gdb_test "whatis v_float_func" \
085dd6e6 394 "type = float \\($void\\)" \
c906108c
SS
395 "whatis float function"
396
397gdb_test "whatis v_double_func" \
085dd6e6 398 "type = double \\($void\\)" \
c906108c
SS
399 "whatis double function" \
400
401
402# test whatis command with some misc complicated types
403gdb_test "whatis s_link" \
404 "type = struct link \\*" \
405 "whatis complicated structure"
406
407gdb_test "whatis u_link" \
408 "type = union tu_link" \
409 "whatis complicated union"
410
411
412# test whatis command with enumerations
413gdb_test "whatis clunker" \
414 "type = enum cars" \
415 "whatis enumeration"
416
f8261448
FF
417gdb_test "whatis enum cars" \
418 "type = enum cars" \
419 "whatis enumeration using type name"
420
c906108c
SS
421
422# test whatis command with nested struct and union
423gdb_test "whatis nested_su" \
424 "type = struct outer_struct" \
425 "whatis outer structure"
426
427gdb_test "whatis nested_su.outer_int" \
428 "type = int" \
429 "whatis outer structure member"
430
085dd6e6
JM
431if {$hp_aCC_compiler} {
432 set outer "outer_struct::"
433} else {
434 set outer ""
435}
436
c906108c 437gdb_test "whatis nested_su.inner_struct_instance" \
085dd6e6 438 "type = struct ${outer}inner_struct" \
c906108c
SS
439 "whatis inner structure"
440
441gdb_test "whatis nested_su.inner_struct_instance.inner_int" \
442 "type = int" \
443 "whatis inner structure member"
444
445gdb_test "whatis nested_su.inner_union_instance" \
085dd6e6 446 "type = union ${outer}inner_union" \
c906108c
SS
447 "whatis inner union"
448
449gdb_test "whatis nested_su.inner_union_instance.inner_union_int" \
450 "type = int" \
451 "whatis inner union member"
f8261448
FF
452
453# test whatis command with typedefs
454
455gdb_test "whatis char_addr" \
456 "type = char \\*" \
457 "whatis using typedef type name"
458
459gdb_test "whatis a_char_addr" \
460 "type = char_addr" \
461 "whatis applied to variable defined by typedef"
95c391b6
TT
462
463# Regression tests for PR 9514.
464
465gdb_test "whatis void (**)()" \
466 "type = void \\(\\*\\*\\)\\(\\)" \
467 "whatis applied to pointer to pointer to function"
468
469gdb_test "whatis void (** const)()" \
470 "type = void \\(\\*\\* const\\)\\(\\)" \
471 "whatis applied to const pointer to pointer to function"
472
473gdb_test "whatis void (* const *)()" \
474 "type = void \\(\\* const \\*\\)\\(\\)" \
475 "whatis applied to pointer to const pointer to function"
fcde5961
TT
476
477gdb_test "whatis int *(*)()" \
478 "type = int \\*\\(\\*\\)\\(\\)" \
479 "whatis applied to pointer to function returning pointer to int"
480
481gdb_test "whatis int *(**)()" \
482 "type = int \\*\\(\\*\\*\\)\\(\\)" \
483 "whatis applied to pointer to pointer to function returning pointer to int"
484
485gdb_test "whatis char (*(*)())\[23\]" \
486 "type = char \\(\\*\\(\\*\\)\\(\\)\\)\\\[23\\\]" \
487 "whatis applied to pointer to function returning pointer to array"
71918a86
TT
488
489gdb_test "whatis int (*)(int, int)" \
490 "type = int \\(\\*\\)\\(int, int\\)" \
491 "whatis applied to pointer to function taking int,int and returning int"
a6fb9c08
TT
492
493gdb_test "whatis int (*)(const int *, ...)" \
494 "type = int \\(\\*\\)\\(const int \\*, \\.\\.\\.\\)" \
495 "whatis applied to pointer to function taking const int ptr and varargs and returning int"
e314d629
TT
496
497gdb_test "whatis int (*)(void, int, int)" \
498 "parameter types following 'void'" \
499 "whatis applied to function with types trailing 'void'"
500
501gdb_test "whatis int (*)(int, void, int)" \
502 "'void' invalid as parameter type" \
503 "whatis applied to function with 'void' parameter type"