1 # Copyright 1988, 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1999, 2000, 2002,
2 # 2003, 2007, 2008, 2009 Free Software Foundation, Inc.
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.
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, see <http://www.gnu.org/licenses/>.
17 # This file was written by Rob Savoye. (rob@cygnus.com)
24 # test running programs
30 set srcfile0 ${testfile}.c
31 set srcfile1 ${testfile}1.c
32 set binfile ${objdir}/${subdir}/${testfile}
34 if { [gdb_compile "${srcdir}/${subdir}/${srcfile0}" "${binfile}0.o" object {debug}] != "" } {
38 if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug}] != "" } {
42 if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug}] != "" } {
47 # Create and source the file that provides information about the compiler
48 # used to compile the test case.
49 if [get_compiler_info ${binfile}] {
55 gdb_reinitialize_dir $srcdir/$subdir
58 # Test ptype of unnamed enumeration members before any action causes
59 # the partial symbol table to be expanded to full symbols. This fails
60 # with stabs compilers which fail to use a nameless stab (such as
61 # pre-2.4.5 versions of gcc and most non-gcc compilers).
63 send_gdb "ptype red1\n"
65 -re "type = enum primary1_tag \{red1, green1, blue1\}.*$gdb_prompt $"\
67 # The workaround is in effect. As this is a compiler, not GDB,
68 # bug, we'll make it a PASS but perhaps it should be an XFAIL.
69 pass "ptype unnamed enumeration member (worked around)"
71 -re "type = enum \{red1, green1, blue1\}.*$gdb_prompt $"\
72 { pass "ptype unnamed enumeration member" }
73 -re ".*$gdb_prompt $" { fail "ptype unnamed enumeration member" }
74 timeout { fail "(timeout) ptype unnamed enumeration member" }
78 # test ptype command with structures
80 # Here and elsewhere, we accept
81 # "long", "long int", or "int" for long variables (whatis.exp already
82 # has an XFAIL for "int" (Sun cc bug), so no need to fail it here).
83 gdb_test "ptype struct t_struct" "type = struct t_struct \{.*\[\r\n\] (unsigned |)char v_char_member;.*\[\r\n\] (short|short int) v_short_member;.*\[\r\n\] int v_int_member;.*\[\r\n\] (long|long int|int) v_long_member;.*\[\r\n\] float v_float_member;.*\[\r\n\] double v_double_member;.*\[\r\n\]\}.*" "ptype structure"
86 # Test the equivalence between '.' and '->' for struct member references.
88 if [gdb_test "ptype v_struct1.v_float_member" "type = float"]<0 then {
91 if [gdb_test "ptype v_struct1->v_float_member" "type = float"]<0 then {
94 if [gdb_test "ptype v_t_struct_p.v_float_member" "type = float"]<0 then {
97 if [gdb_test "ptype v_t_struct_p->v_float_member" "type = float"]<0 then {
102 # IBM's xlc puts out bogus stabs--the stuff field is type 42,
103 # which isn't defined.
105 gdb_test "ptype struct link" "type = struct link \{\[\r\n\]+\[ \t\]+struct link \\*next;\[\r\n\]+\[ \t\]+struct link \\*\\(\\*linkfunc\\)\\((struct link \\*, int|void|)\\);\[\r\n\]+\[ \t\]+struct t_struct stuff.1..2..3.;\[\r\n\]+\}.*" "ptype linked list structure"
108 # test ptype command with unions
110 gdb_test "ptype union t_union" "type = union t_union \{.*\[\r\n\] (unsigned |)char v_char_member;.*\[\r\n\] (short|short int) v_short_member;.*\[\r\n\] int v_int_member;.*\[\r\n\] (long|long int|int) v_long_member;.*\[\r\n\] float v_float_member;.*\[\r\n\] double v_double_member;.*\[\r\n\]\}.*" "ptype union"
112 # IBM's xlc puts out bogus stabs--the stuff field is type 42,
113 # which isn't defined.
114 gdb_test "ptype union tu_link" "type = union tu_link \{\[\r\n\]+\[ \t\]+struct link \\*next;\[\r\n\]+\[ \t\]+struct link \\*\\(\\*linkfunc\\)\\((struct link \\*, int|void|)\\);\[\r\n\]+\[ \t\]+struct t_struct stuff.1..2..3.;\[\r\n\]+\}.*" "ptype linked list union"
117 # test ptype command with enums
120 gdb_test "ptype primary" "type = enum .red, green, blue.*" "ptype unnamed enumeration"
122 gdb_test "ptype enum colors" "type = enum colors \{yellow, purple, pink\}.*" "ptype named enumeration"
126 # test ptype command with enums as typedef
128 gdb_test "ptype boolean" "type = enum (boolean |)\{FALSE, TRUE\}.*" "ptype unnamed typedef'd enumeration"
130 # And check that whatis shows the name, not "enum {...}".
131 # This probably fails for all DWARF 1 cases, so assume so for now. -fnf
132 # The problem with xlc is that the stabs look like
133 # :t51=eFALSE:0,TRUE:1,;
136 # GDB's behavior is correct; the type which the variable is defined
137 # as (51) doesn't have a name. Only 55 has a name.
139 if {!$gcc_compiled && !$hp_aCC_compiler} {
140 setup_xfail "rs6000-*-*" "i*86-*-sysv4*"
141 setup_xfail "hppa*-*-*" CLLbs14773
144 # For get_debug_format to do its job, we need to have a current source file.
145 gdb_test "list main" ""
147 gdb_test "whatis v_boolean" "type = (enum |)boolean" \
148 "whatis unnamed typedef'd enum (compiler bug in IBM's xlc)"
150 # Same thing with struct and union.
151 gdb_test "ptype t_struct3" "type = struct (t_struct3 |)\{.*
152 *double v_double_member;.*
153 *int v_int_member;.*\}" "printing typedef'd struct"
155 gdb_test "ptype t_union3" "type = union (t_union3 |)\{.*
156 *double v_double_member;.*
157 *int v_int_member;.*\}" "printing typedef'd union"
159 gdb_test "ptype enum bvals" "type = enum bvals \{my_false, my_true\}.*" "ptype named typedef'd enumf'd enum"
162 # test ptype command with out-of-order enum values
164 gdb_test "ptype enum misordered" "type = enum misordered \{two = 2, one = 1, zero = 0, three = 3\}.*" "ptype misordered enumeration"
167 # test ptype command with a named enum's value
169 gdb_test "ptype three" "type = enum misordered \{two = 2, one = 1, zero = 0, three = 3\}.*" "ptype named enumeration member"
171 gdb_test "ptype red" "type = enum \{red, green, blue\}.*" "ptype unnamed enumeration member #2"
174 # test ptype command with basic C types
176 # I've commented most of this out because it duplicates tests in whatis.exp.
177 # I've just left in a token test or 2 which is designed to test that ptype
178 # acts like whatis for basic types. If it is thought to be necessary to
179 # test both whatis and ptype for all the types, the tests should be
180 # merged into whatis.exp, or else maintenance will be a royal pain -kingdon
181 #setup_xfail "mips-idt-*" "mips-sgi-*"
182 #send "ptype v_char\n"
184 # -re "type = char.*$gdb_prompt $" { pass "ptype char" }
185 # -re ".*$gdb_prompt $" { fail "ptype char" }
186 # timeout { fail "(timeout) ptype char" }
190 #setup_xfail "mips-*-*"
191 #send "ptype v_signed_char\n"
193 # -re "type = signed char.*$gdb_prompt $" { pass "ptype signed char" }
194 # -re ".*$gdb_prompt $" { fail "ptype signed char" }
195 # timeout { fail "(timeout) ptype signed char" }
199 #send "ptype v_unsigned_char\n"
201 # -re "type = unsigned char.*$gdb_prompt $" { pass "ptype unsigned char" }
202 # -re ".*$gdb_prompt $" { fail "ptype unsigned char" }
203 # timeout { fail "(timeout) ptype unsigned char" }
206 gdb_test "ptype v_short" "type = short(| int).*" "ptype short"
208 #send "ptype v_signed_short\n"
210 # -re "type = short.*$gdb_prompt $" { pass "ptype signed short" }
211 # -re ".*$gdb_prompt $" { fail "ptype signed short" }
212 # timeout { fail "(timeout) ptype signed short" }
216 #send "ptype v_unsigned_short\n"
218 # -re "type = unsigned short.*$gdb_prompt $" { pass "ptype unsigned short" }
219 # -re ".*$gdb_prompt $" { fail "ptype unsigned short" }
220 # timeout { fail "(timeout) ptype unsigned short" }
224 gdb_test "ptype v_int" "type = int.*" "ptype int"
226 #send "ptype v_signed_int\n"
228 # -re "type = int.*$gdb_prompt $" { pass "ptype signed int" }
229 # -re ".*$gdb_prompt $" { fail "ptype signed int" }
230 # timeout { fail "(timeout) ptype signed int" }
234 #send "ptype v_unsigned_int\n"
236 # -re "type = unsigned int.*$gdb_prompt $" { pass "ptype unsigned int" }
237 # -re ".*$gdb_prompt $" { fail "ptype unsigned int" }
238 # timeout { fail "(timeout) ptype unsigned int" }
242 #send "ptype v_long\n"
244 # -re "type = long.*$gdb_prompt $" { pass "ptype long" }
245 # -re ".*$gdb_prompt $" { fail "ptype long" }
246 # timeout { fail "(timeout) ptype long" }
250 #send "ptype v_signed_long\n"
252 # -re "type = long.*$gdb_prompt $" { pass "ptype signed long" }
253 # -re ".*$gdb_prompt $" { fail "ptype signed long" }
254 # timeout { fail "(timeout) ptype signed long" }
258 #send "ptype v_unsigned_long\n"
260 # -re "type = unsigned long.*$gdb_prompt $" { pass "ptype unsigned long" }
261 # -re ".*$gdb_prompt $" { fail "ptype unsigned long" }
262 # timeout { fail "(timeout) ptype unsigned long" }
266 #send "ptype v_float\n"
268 # -re "type = float.*$gdb_prompt $" { pass "ptype float" }
269 # -re ".*$gdb_prompt $" { fail "ptype float" }
270 # timeout { fail "(timeout) ptype float" }
274 #send "ptype v_double\n"
276 # -re "type = double.*$gdb_prompt $" { pass "ptype double" }
277 # -re ".*$gdb_prompt $" { fail "ptype double" }
278 # timeout { fail "(timeout) ptype double" }
283 # test ptype command with arrays
285 #setup_xfail "mips-idt-*" "mips-sgi-*"
286 #send "ptype v_char_array\n"
288 # -re "type = char .2..*$gdb_prompt $" { pass "ptype char array" }
289 # -re ".*$gdb_prompt $" { fail "ptype char array" }
290 # timeout { fail "(timeout) ptype char array" }
294 #setup_xfail "mips-*-*"
295 #send "ptype v_signed_char_array\n"
297 # -re "type = (|signed )char .2..*$gdb_prompt $" { pass "ptype signed char array" }
298 # -re ".*$gdb_prompt $" { fail "ptype signed char array" }
299 # timeout { fail "(timeout) ptype signed char array" }
303 #send "ptype v_unsigned_char_array\n"
305 # -re "type = unsigned char .2..*$gdb_prompt $" { pass "ptype unsigned char array" }
306 # -re ".*$gdb_prompt $" { fail "ptype unsigned char array" }
307 # timeout { fail "(timeout) ptype unsigned char array" }
312 #send "ptype v_int_array\n"
314 # -re "type = int .2..*$gdb_prompt $" { pass "ptype int array" }
315 # -re ".*$gdb_prompt $" { fail "ptype int array" }
316 # timeout { fail "(timeout) ptype int array" }
320 #send "ptype v_signed_int_array\n"
322 # -re "type = int .2..*$gdb_prompt $" { pass "ptype signed int array" }
323 # -re ".*$gdb_prompt $" { fail "ptype signed int array" }
324 # timeout { fail "(timeout) ptype signed int array" }
328 #send "ptype v_unsigned_int_array\n"
330 # -re "type = unsigned int .2..*$gdb_prompt $" { pass "ptype unsigned int array" }
331 # -re ".*$gdb_prompt $" { fail "ptype unsigned int array" }
332 # timeout { fail "(timeout) ptype unsigned int array" }
336 #send "ptype v_long_array\n"
338 # -re "type = (long|int|long int) .2..*$gdb_prompt $" {
339 # pass "ptype long array" }
340 # -re ".*$gdb_prompt $" { fail "ptype long array" }
341 # timeout { fail "(timeout) ptype long array" }
345 #send "ptype v_signed_long_array\n"
347 # -re "type = (long|int|long int) .2..*$gdb_prompt $" {
348 # pass "ptype signed long array" }
349 # -re ".*$gdb_prompt $" { fail "ptype signed long array" }
350 # timeout { fail "(timeout) ptype signed long array" }
354 #send "ptype v_unsigned_long_array\n"
356 # -re "type = unsigned long .2..*$gdb_prompt $" { pass "ptype unsigned long array" }
357 # -re ".*$gdb_prompt $" { fail "ptype unsigned long array" }
358 # timeout { fail "(timeout) ptype unsigned long array" }
362 #send "ptype v_float_array\n"
364 # -re "type = float .2..*$gdb_prompt $" { pass "ptype float array" }
365 # -re ".*$gdb_prompt $" { fail "ptype float array" }
366 # timeout { fail "(timeout) ptype float array" }
370 #send "ptype v_double_array\n"
372 # -re "type = double .2..*$gdb_prompt $" { pass "ptype double array" }
373 # -re ".*$gdb_prompt $" { fail "ptype double array" }
374 # timeout { fail "(timeout) ptype double array" }
378 if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" "i*86-*-sysv4*" }
379 if {$hp_aCC_compiler} {setup_xfail "hppa*-*-*"}
380 gdb_test "ptype t_char_array" "type = (|unsigned )char \\\[0?\\\]"
384 ## test ptype command with pointers
386 #setup_xfail "mips-idt-*" "mips-sgi-*"
387 #send "ptype v_char_pointer\n"
389 # -re "type = char \*.*$gdb_prompt $" { pass "ptype char pointer" }
390 # -re ".*$gdb_prompt $" { fail "ptype char pointer" }
391 # timeout { fail "(timeout) ptype char pointer" }
395 #setup_xfail "mips-*-*"
396 #send "ptype v_signed_char_pointer\n"
398 # -re "type = (|signed )char \*.*$gdb_prompt $"
399 # { pass "ptype signed char pointer" }
400 # -re ".*$gdb_prompt $" { fail "ptype signed char pointer" }
401 # timeout { fail "(timeout) ptype signed char pointer" }
405 #send "ptype v_unsigned_char_pointer\n"
407 # -re "type = unsigned char \*.*$gdb_prompt $" { pass "ptype unsigned char pointer" }
408 # -re ".*$gdb_prompt $" { fail "ptype unsigned char pointer" }
409 # timeout { fail "(timeout) ptype unsigned char pointer" }
413 #send "ptype v_short_pointer\n"
415 # -re "type = (short|short int) \*.*$gdb_prompt $" { pass "ptype short pointer" }
416 # -re ".*$gdb_prompt $" { fail "ptype short pointer" }
417 # timeout { fail "(timeout) ptype short pointer" }
421 #send "ptype v_signed_short_pointer\n"
423 # -re "type = short \*.*$gdb_prompt $" { pass "ptype signed short pointer" }
424 # -re ".*$gdb_prompt $" { fail "ptype signed short pointer" }
425 # timeout { fail "(timeout) ptype signed short pointer" }
429 #send "ptype v_unsigned_short_pointer\n"
431 # -re "type = unsigned short \*.*$gdb_prompt $" { pass "ptype unsigned short pointer" }
432 # -re ".*$gdb_prompt $" { fail "ptype unsigned short pointer" }
433 # timeout { fail "(timeout) ptype unsigned short pointer" }
437 #send "ptype v_int_pointer\n"
439 # -re "type = int \*.*$gdb_prompt $" { pass "ptype int pointer" }
440 # -re ".*$gdb_prompt $" { fail "ptype int pointer" }
441 # timeout { fail "(timeout) ptype int pointer" }
445 #send "ptype v_signed_int_pointer\n"
447 # -re "type = int \*.*$gdb_prompt $" { pass "ptype signed int pointer" }
448 # -re ".*$gdb_prompt $" { fail "ptype signed int pointer" }
449 # timeout { fail "(timeout) ptype signed int pointer" }
453 #send "ptype v_unsigned_int_pointer\n"
455 # -re "type = unsigned int \*.*$gdb_prompt $" { pass "ptype unsigned int pointer" }
456 # -re ".*$gdb_prompt $" { fail "ptype unsigned int pointer" }
457 # timeout { fail "(timeout) ptype unsigned int pointer" }
461 #send "ptype v_long_pointer\n"
463 # -re "type = long \*.*$gdb_prompt $" { pass "ptype long pointer" }
464 # -re ".*$gdb_prompt $" { fail "ptype long pointer" }
465 # timeout { fail "(timeout) ptype long pointer" }
469 #send "ptype v_signed_long_pointer\n"
471 # -re "type = long \*.*$gdb_prompt $" { pass "ptype signed long pointer" }
472 # -re ".*$gdb_prompt $" { fail "ptype signed long pointer" }
473 # timeout { fail "(timeout) ptype signed long pointer" }
477 #send "ptype v_unsigned_long_pointer\n"
479 # -re "type = unsigned long \*.*$gdb_prompt $" { pass "ptype unsigned long pointer" }
480 # -re ".*$gdb_prompt $" { fail "ptype unsigned long pointer" }
481 # timeout { fail "(timeout) ptype unsigned long pointer" }
485 #send "ptype v_float_pointer\n"
487 # -re "type = float \*.*$gdb_prompt $" { pass "ptype float pointer" }
488 # -re ".*$gdb_prompt $" { fail "ptype float pointer" }
489 # timeout { fail "(timeout) ptype float pointer" }
493 #send "ptype v_double_pointer\n"
495 # -re "type = double \*.*$gdb_prompt $" { pass "ptype double pointer" }
496 # -re ".*$gdb_prompt $" { fail "ptype double pointer" }
497 # timeout { fail "(timeout) ptype double pointer" }
501 # test ptype command with nested structure and union
503 if {$hp_aCC_compiler} {
504 set outer "outer_struct::"
512 gdb_test "ptype struct outer_struct" "type = struct outer_struct \{.*\[\r\n\]+\
513 .*int outer_int;.*\[\r\n\]+\
514 .*(struct|) ${outer}inner_struct inner_struct_instance;.*\[\r\n\]+\
515 .*(union|) ${outer}inner_union inner_union_instance;.*\[\r\n\]+\
516 .*(long|long int|int) outer_long;.*\[\r\n\]\}.*" "ptype outer structure"
518 gdb_test "ptype ${struct} ${outer}inner_struct" "type = struct ${outer}inner_struct \{.*\[\r\n\] int inner_int;.*\[\r\n\] (long|long int|int) inner_long;.*\[\r\n\]\}.*" "ptype inner structure"
520 gdb_test "ptype ${union} ${outer}inner_union" "type = union ${outer}inner_union \{.*\[\r\n\] int inner_union_int;.*\[\r\n\] (long|long int|int) inner_union_long;.*\[\r\n\]\}.*" "ptype inner union"
522 gdb_test "ptype nested_su" "type = struct outer_struct \{.*\[\r\n\] int outer_int;.*\[\r\n\] (struct |)${outer}inner_struct inner_struct_instance;.*\[\r\n\] (union |)${outer}inner_union inner_union_instance;.*\[\r\n\] (long|long int|int) outer_long;.*\[\r\n\]\}.*" "ptype nested structure"
524 gdb_test "ptype nested_su.outer_int" "type = int.*" "ptype outer int"
526 gdb_test "ptype nested_su.inner_struct_instance" "type = struct ${outer}inner_struct \{.*\[\r\n\] int inner_int;.*\[\r\n\] (long|long int|int) inner_long;.*\[\r\n\]\}.*" "ptype nested structure #2"
528 gdb_test "ptype nested_su.inner_struct_instance.inner_int" "type = int.*" "ptype inner int"
530 gdb_test "ptype nested_su.inner_union_instance" "type = union ${outer}inner_union \{.*\[\r\n\] int inner_union_int;.*\[\r\n\] (long|long int|int) inner_union_long;.*\[\r\n\]\}.*" "ptype nested union"
532 # Print the type description of variable the_highest, and verify that
533 # the type description for the fields whose type is anonymous are
534 # correctly printed (at nesting level 1 and 2).
536 gdb_test "ptype the_highest" \
537 "type = struct highest \{.*\[\r\n\] *int a;.*\[\r\n\] *struct \{.*\[\r\n\] *int b;.*\[\r\n\] *struct \{\.\.\.\} anonymous_level_2;.*\[\r\n\] *\} anonymous_level_1;.*\[\r\n\]}.*" \
540 # Print the type descrption for one of the fields of variable the_highest.
541 # The purpose is to verify that the type of a field that was printed above
542 # as "struct {...}" is now printed in a more descriptive way (because the
543 # nesting level is now one level less).
545 gdb_test "ptype the_highest.anonymous_level_1" \
546 "type = struct \{.*\[\r\n\] *int b;.*\[\r\n\] *struct \{.*\[\r\n\] *int c;.*\[\r\n\] *\} anonymous_level_2;.*\[\r\n\]}.*" \
551 # Print the type of the identifier ID, and check the response:
552 # - Expect to see PROTOTYPED as the type. PROTOTYPED is not a regular
553 # expression; it's a literal string.
554 # - If we instead see the unprototyped type PLAIN, and we're using STABS
555 # generated by GCC, that's an xfail; as of 9 Feb 2002, GCC never emits
556 # prototyped function types in STABS. Like PROTOTYPED, PLAIN is a
557 # literal string, not a regular expression.
558 # - Otherwise, it's a failure.
559 proc ptype_maybe_prototyped { id prototyped plain } {
563 # Turn `prototyped' and `plain', which are literal strings, into
564 # regular expressions by quoting any special characters they contain.
565 regsub -all "\[\]\[*()\]" $prototyped "\\\\&" prototyped
566 regsub -all "\[\]\[*()\]" $plain "\\\\&" plain
568 send_gdb "ptype $id\n"
570 -re "type = $prototyped\[\r\n\]+$gdb_prompt $" {
573 -re "type = $plain\[\r\n\]+$gdb_prompt $" {
574 if {$gcc_compiled} { setup_xfail_format "stabs" }
575 fail "ptype $id (compiler doesn't emit prototyped types)"
577 -re "$gdb_prompt $" {
581 fail "ptype $id (timeout)"
586 ptype_maybe_prototyped "func_type" "int (*)(int (*)(int, float), float)" \
588 ptype_maybe_prototyped "old_fptr" "double (*)()" "double (*)()"
589 ptype_maybe_prototyped "new_fptr" "double (*)(void)" "double (*)()"
590 ptype_maybe_prototyped "fptr" "int (*)(int, float)" "int (*)()"
591 ptype_maybe_prototyped "fptr2" "int *(*)(int (*)(int, float), float)" \
593 ptype_maybe_prototyped "xptr" "int (*)(int (*)(), int (*)(void), int)" \
595 ptype_maybe_prototyped "ffptr" "int (*(*)(char))(short int)" \
597 ptype_maybe_prototyped "fffptr" "int (*(*(*)(char))(short int))(long int)" \
598 "int (*(*(*)())())()"
600 # Test printing type of typedefs in different scopes, with same name
601 # but different type.
603 gdb_test "list intfoo" ""
604 gdb_test "ptype foo" "type = int" "ptype foo typedef after first list of intfoo"
605 gdb_test "list charfoo" ""
606 gdb_test "ptype foo" "type = char" "ptype foo typedef after first list of charfoo"
607 gdb_test "list intfoo" ""
608 gdb_test "ptype foo" "type = int" "ptype foo typedef after second list of intfoo"
609 gdb_test "list charfoo" ""
610 gdb_test "ptype foo" "type = char" "ptype foo typedef after second list of charfoo"
612 # Test printing type of string constants and array constants, but
613 # requires a running process. These call malloc, and can take a long
614 # time to execute over a slow serial link, so increase the timeout.
616 # UDI can't do this (PR 2416). XFAIL is not suitable, because attempting
617 # the operation causes a slow painful death rather than a nice simple failure.
619 if [runto_main] then {
621 if [target_info exists gdb,cannot_call_functions] {
622 setup_xfail "*-*-*" 2416
623 fail "This target can not call functions"
627 # We need to up this because this can be really slow on some boards.
628 # (malloc() is called as part of the test).
631 gdb_test "ptype \"abc\"" "type = char \\\[4\\\]"
632 gdb_test "ptype {'a','b','c'}" "type = char \\\[3\\\]"
633 gdb_test "ptype {0,1,2}" "type = int \\\[3\\\]"
634 gdb_test "ptype {(long)0,(long)1,(long)2}" "type = long \\\[3\\\]"
635 gdb_test "ptype {(float)0,(float)1,(float)2}" "type = float \\\[3\\\]"
636 gdb_test "ptype {{0,1,2},{3,4,5}}" "type = int \\\[2\\\]\\\[3\\\]"
637 gdb_test "ptype {4,5,6}\[2\]" "type = int"
638 gdb_test "ptype *&{4,5,6}\[1\]" "Attempt to take address of value not located in memory."
640 # Test ptype of user register
641 gdb_test "ptype \$pc" "void \\(\\*\\)\\(\\)" "ptype \$pc"