gdb/testsuite: Merge cvexpr.exp and ctf-cvexpr.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / whatis.exp
CommitLineData
42a4f53d 1# Copyright 1988-2019 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] != "" } {
84c93cd5 31 untested "failed to compile"
b60f0898 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.
09dd9a69 47# Sun cc has this problem.
c906108c
SS
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} {
09dd9a69 54 setup_xfail "*-sun-sunos4*" "i*86-sequent-bsd*"
c906108c
SS
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
284# test whatis command with structure types
5c319bb2
PA
285
286# First with a type argument, with both "set print object" set to "on"
287# and "off", ending with "off" for the following tests.
288foreach_with_prefix print_object {"on" "off"} {
289 gdb_test_no_output "set print object $print_object"
290
291 gdb_test "whatis struct t_struct" \
292 "type = struct t_struct" \
293 "whatis named structure using type name"
294
295 gdb_test "whatis struct t_struct *" \
296 "type = struct t_struct \\*" \
297 "whatis named structure using type name and pointer"
298
299 gdb_test "whatis struct t_struct &" \
300 "type = struct t_struct &" \
301 "whatis named structure using type name and reference"
302}
303
304# Now with an expression argument.
305
c906108c
SS
306gdb_test "whatis v_struct1" \
307 "type = struct t_struct" \
308 "whatis named structure"
309
310gdb_test "whatis v_struct2" \
b6304613 311 "type = struct \{\.\.\.\}" \
c906108c
SS
312 "whatis unnamed structure"
313
ac775bf4
AB
314gdb_test "whatis &v_struct1" \
315 "type = struct t_struct \\*"
316
317gdb_test "whatis &v_struct2" \
318 "type = struct {\\.\\.\\.} \\*"
319
320gdb_test "whatis v_struct_ptr1" \
321 "type = struct t_struct \\*"
322
323gdb_test "whatis v_struct_ptr2" \
324 "type = struct {\\.\\.\\.} \\*"
325
326gdb_test "whatis &v_struct_ptr1" \
327 "type = struct t_struct \\*\\*"
328
329gdb_test "whatis &v_struct_ptr2" \
330 "type = struct {\\.\\.\\.} \\*\\*"
331
332gdb_test "whatis v_struct1.v_char_member" \
333 "type = char"
334
335gdb_test "whatis v_struct2.v_char_member" \
336 "type = char"
337
338gdb_test "whatis v_struct_ptr1->v_char_member" \
339 "type = char"
340
341gdb_test "whatis v_struct_ptr2->v_char_member" \
342 "type = char"
343
344gdb_test "whatis &(v_struct1.v_char_member)" \
345 "type = char \\*"
346
347gdb_test "whatis &(v_struct2.v_char_member)" \
348 "type = char \\*"
349
350gdb_test "whatis &(v_struct_ptr1->v_char_member)" \
351 "type = char \\*"
352
353gdb_test "whatis &(v_struct_ptr2->v_char_member)" \
354 "type = char \\*"
c906108c
SS
355
356# test whatis command with union types
357gdb_test "whatis v_union" \
358 "type = union t_union" \
359 "whatis named union"
360
f8261448
FF
361gdb_test "whatis union t_union" \
362 "type = union t_union" \
363 "whatis named union using type name"
364
c906108c 365gdb_test "whatis v_union2" \
b6304613 366 "type = union \{\.\.\.\}" \
c906108c
SS
367 "whatis unnamed union"
368
ac775bf4
AB
369gdb_test "whatis &v_union" \
370 "type = union t_union \\*"
371
372gdb_test "whatis &v_union2" \
373 "type = union {\\.\\.\\.} \\*"
374
375gdb_test "whatis v_union_ptr" \
376 "type = union t_union \\*"
377
378gdb_test "whatis v_union_ptr2" \
379 "type = union {\\.\\.\\.} \\*"
380
381gdb_test "whatis &v_union_ptr" \
382 "type = union t_union \\*\\*"
383
384gdb_test "whatis &v_union_ptr2" \
385 "type = union {\\.\\.\\.} \\*\\*"
386
387gdb_test "whatis v_union.v_char_member" \
388 "type = char"
389
390gdb_test "whatis v_union2.v_char_member" \
391 "type = char"
392
393gdb_test "whatis v_union_ptr->v_char_member" \
394 "type = char"
395
396gdb_test "whatis v_union_ptr2->v_char_member" \
397 "type = char"
398
399gdb_test "whatis &(v_union.v_char_member)" \
400 "type = char \\*"
401
402gdb_test "whatis &(v_union2.v_char_member)" \
403 "type = char \\*"
404
405gdb_test "whatis &(v_union_ptr->v_char_member)" \
406 "type = char \\*"
407
408gdb_test "whatis &(v_union_ptr2->v_char_member)" \
409 "type = char \\*"
410
c906108c 411
b6304613 412# Using stabs we will mark these functions as prototyped. This
1e698235
DJ
413# is harmless but causes an extra VOID to be printed.
414set void "(void|)"
c906108c
SS
415
416# test whatis command with functions return type
417gdb_test "whatis v_char_func" \
085dd6e6 418 "type = (signed |unsigned |)char \\($void\\)" \
c906108c
SS
419 "whatis char function"
420
421gdb_test "whatis v_signed_char_func" \
085dd6e6 422 "type = (signed |unsigned |)char \\($void\\)" \
c906108c
SS
423 "whatis signed char function"
424
425gdb_test "whatis v_unsigned_char_func" \
085dd6e6 426 "type = unsigned char \\($void\\)" \
c906108c
SS
427 "whatis unsigned char function"
428
429gdb_test "whatis v_short_func" \
085dd6e6 430 "type = short (int |)\\($void\\)" \
c906108c
SS
431 "whatis short function"
432
433gdb_test "whatis v_signed_short_func" \
085dd6e6 434 "type = (signed |)short (int |)\\($void\\)" \
c906108c
SS
435 "whatis signed short function"
436
437gdb_test "whatis v_unsigned_short_func" \
085dd6e6 438 "type = (unsigned short|short unsigned int) \\($void\\)" \
c906108c
SS
439 "whatis unsigned short function"
440
441gdb_test "whatis v_int_func" \
085dd6e6 442 "type = int \\($void\\)" \
c906108c
SS
443 "whatis int function"
444
445gdb_test "whatis v_signed_int_func" \
085dd6e6 446 "type = (signed |)int \\($void\\)" \
c906108c
SS
447 "whatis signed int function"
448
449gdb_test "whatis v_unsigned_int_func" \
085dd6e6 450 "type = unsigned int \\($void\\)" \
c906108c
SS
451 "whatis unsigned int function"
452
453gdb_test "whatis v_long_func" \
085dd6e6 454 "type = (long|int|long int) \\($void\\)" \
c906108c
SS
455 "whatis long function"
456
457gdb_test "whatis v_signed_long_func" \
085dd6e6 458 "type = (signed |)(int|long|long int) \\($void\\)" \
c906108c
SS
459 "whatis signed long function"
460
461gdb_test "whatis v_unsigned_long_func" \
085dd6e6 462 "type = (unsigned (int|long|long int)|long unsigned int) \\($void\\)" \
c906108c
SS
463 "whatis unsigned long function"
464
64b2fa04
PA
465if ![target_info exists no_long_long] {
466 gdb_test "whatis v_long_long_func" \
467 "type = long long(| int) \\($void\\)" \
468 "whatis long long function"
469
470 gdb_test "whatis v_signed_long_long_func" \
471 "type = (signed |)long long(| int) \\($void\\)" \
472 "whatis signed long long function"
473
474 gdb_test "whatis v_unsigned_long_long_func" \
475 "type = (unsigned long long(| int)|long long unsigned int) \\($void\\)" \
476 "whatis unsigned long long function"
477}
478
c906108c
SS
479# Sun /bin/cc calls this a function returning double.
480if {!$gcc_compiled} then {setup_xfail "*-sun-sunos4*"}
481gdb_test "whatis v_float_func" \
085dd6e6 482 "type = float \\($void\\)" \
c906108c
SS
483 "whatis float function"
484
485gdb_test "whatis v_double_func" \
085dd6e6 486 "type = double \\($void\\)" \
c906108c
SS
487 "whatis double function" \
488
489
490# test whatis command with some misc complicated types
491gdb_test "whatis s_link" \
492 "type = struct link \\*" \
493 "whatis complicated structure"
494
495gdb_test "whatis u_link" \
496 "type = union tu_link" \
497 "whatis complicated union"
498
499
500# test whatis command with enumerations
501gdb_test "whatis clunker" \
502 "type = enum cars" \
503 "whatis enumeration"
504
f8261448
FF
505gdb_test "whatis enum cars" \
506 "type = enum cars" \
507 "whatis enumeration using type name"
508
c906108c
SS
509
510# test whatis command with nested struct and union
511gdb_test "whatis nested_su" \
512 "type = struct outer_struct" \
513 "whatis outer structure"
514
515gdb_test "whatis nested_su.outer_int" \
516 "type = int" \
517 "whatis outer structure member"
518
519gdb_test "whatis nested_su.inner_struct_instance" \
b6304613 520 "type = struct inner_struct" \
c906108c
SS
521 "whatis inner structure"
522
523gdb_test "whatis nested_su.inner_struct_instance.inner_int" \
524 "type = int" \
525 "whatis inner structure member"
526
527gdb_test "whatis nested_su.inner_union_instance" \
b6304613 528 "type = union inner_union" \
c906108c
SS
529 "whatis inner union"
530
531gdb_test "whatis nested_su.inner_union_instance.inner_union_int" \
532 "type = int" \
533 "whatis inner union member"
f8261448
FF
534
535# test whatis command with typedefs
536
537gdb_test "whatis char_addr" \
538 "type = char \\*" \
539 "whatis using typedef type name"
540
541gdb_test "whatis a_char_addr" \
542 "type = char_addr" \
543 "whatis applied to variable defined by typedef"
95c391b6
TT
544
545# Regression tests for PR 9514.
546
547gdb_test "whatis void (**)()" \
548 "type = void \\(\\*\\*\\)\\(\\)" \
549 "whatis applied to pointer to pointer to function"
550
551gdb_test "whatis void (** const)()" \
552 "type = void \\(\\*\\* const\\)\\(\\)" \
553 "whatis applied to const pointer to pointer to function"
554
555gdb_test "whatis void (* const *)()" \
556 "type = void \\(\\* const \\*\\)\\(\\)" \
557 "whatis applied to pointer to const pointer to function"
fcde5961
TT
558
559gdb_test "whatis int *(*)()" \
560 "type = int \\*\\(\\*\\)\\(\\)" \
561 "whatis applied to pointer to function returning pointer to int"
562
563gdb_test "whatis int *(**)()" \
564 "type = int \\*\\(\\*\\*\\)\\(\\)" \
565 "whatis applied to pointer to pointer to function returning pointer to int"
566
567gdb_test "whatis char (*(*)())\[23\]" \
568 "type = char \\(\\*\\(\\*\\)\\(\\)\\)\\\[23\\\]" \
569 "whatis applied to pointer to function returning pointer to array"
71918a86
TT
570
571gdb_test "whatis int (*)(int, int)" \
572 "type = int \\(\\*\\)\\(int, int\\)" \
573 "whatis applied to pointer to function taking int,int and returning int"
a6fb9c08
TT
574
575gdb_test "whatis int (*)(const int *, ...)" \
576 "type = int \\(\\*\\)\\(const int \\*, \\.\\.\\.\\)" \
577 "whatis applied to pointer to function taking const int ptr and varargs and returning int"
e314d629
TT
578
579gdb_test "whatis int (*)(void, int, int)" \
580 "parameter types following 'void'" \
581 "whatis applied to function with types trailing 'void'"
582
583gdb_test "whatis int (*)(int, void, int)" \
584 "'void' invalid as parameter type" \
585 "whatis applied to function with 'void' parameter type"
This page took 2.092892 seconds and 4 git commands to generate.