1 # This testcase is part of GDB
, the GNU debugger.
3 # Copyright
2000, 2002, 2003, 2004, 2005 Free Software Foundation
, Inc.
5 # This
program is free software
; you can redistribute it and
/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation
; either version
2 of the License
, or
8 #
(at your option
) any later version.
10 # This
program is distributed in the hope that it will be useful
,
11 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License
for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this
program; if not
, write to the Free Software
17 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
19 if [target_info
exists gdb
,noinferiorio
] {
20 verbose
"Skipping fileio.exp because of no fileio capabilities."
29 # test running programs
35 set srcfile $
{testfile
}.c
36 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
37 if { [gdb_compile
"${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
38 gdb_suppress_entire_file
"Testcase compile failed, so all tests in this file will automatically fail."
41 if [get_compiler_info $
{binfile
}] {
47 gdb_reinitialize_dir $srcdir
/$subdir
51 #
set it up at a breakpoint so we can play with the
variable values
54 if ![runto_main
] then {
55 perror
"couldn't run to breakpoint"
60 # Query GDB
for the size of various types
63 proc get_valueof
{ fmt exp default
} {
66 set test
"get valueof \"${exp}\""
68 gdb_test_multiple
"print${fmt} ${exp}" "$test" {
69 -re
"\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
70 set val $expect_out
(1,string
)
77 proc get_sizeof
{ type default
} {
78 return [get_valueof
"/d" "sizeof (${type})" $default]
83 set sizeof_char
[get_sizeof
"char" 1]
84 set sizeof_short
[get_sizeof
"short" 2]
85 set sizeof_int
[get_sizeof
"int" 4]
86 set sizeof_long
[get_sizeof
"long" 4]
87 set sizeof_long_long
[get_sizeof
"long long" 8]
89 set sizeof_data_ptr
[get_sizeof
"void *" 4]
90 set sizeof_func_ptr
[get_sizeof
"void (*)(void)" 4]
92 set sizeof_float
[get_sizeof
"float" 4]
93 set sizeof_double
[get_sizeof
"double" 8]
94 set sizeof_long_double
[get_sizeof
"long double" 8]
97 # Compare GDB
's idea of types with the running program
100 proc check_sizeof { type size } {
103 set pat [string_to_regexp "sizeof (${type}) == ${size}"]
104 gdb_test "next" "${pat}\[\r\n\]+\[0-9\].*" "check sizeof \"$type\""
107 check_sizeof "char" ${sizeof_char}
108 check_sizeof "short" ${sizeof_short}
109 check_sizeof "int" ${sizeof_int}
110 check_sizeof "long" ${sizeof_long}
111 check_sizeof "long long" ${sizeof_long_long}
113 check_sizeof "void *" ${sizeof_data_ptr}
114 check_sizeof "void (*)(void)" ${sizeof_func_ptr}
116 check_sizeof "float" ${sizeof_float}
117 check_sizeof "double" ${sizeof_double}
118 check_sizeof "long double" ${sizeof_long_double}
120 proc check_valueof { exp val } {
123 set pat [string_to_regexp "valueof (${exp}) == ${val}"]
124 gdb_test "next" "${pat}\[\r\n\]+\[0-9\].*" "check valueof \"$exp\""
127 # Check that GDB and the target agree over the sign of a character.
129 set signof_byte [get_valueof "/d" "'\\377'" -1]
130 set signof_char [get_valueof "/d" "(int) (char) -1" -1]
131 set signof_signed_char [get_valueof "/d" "(int) (signed char) -1" -1]
132 set signof_unsigned_char [get_valueof "/d" "(int) (unsigned char) -1" -1]
134 check_valueof "'\\377'" ${signof_byte}
135 check_valueof "(int) (char) -1" ${signof_char}
136 check_valueof "(int) (signed char) -1" ${signof_signed_char}
137 check_valueof "(int) (unsigned char) -1" ${signof_unsigned_char}
139 proc check_padding { fmt type val } {
141 gdb_test "set padding_${type}.v = ${val}"
142 gdb_test "print padding_${type}.p1" "= \"The quick brown \""
143 gdb_test "print${fmt} padding_${type}.v" "= ${val}"
144 gdb_test "print padding_${type}.p2" "\"The quick brown \".*"
147 # Check that GDB is managing to store a value in a struct field
148 # without corrupting the fields immediately adjacent to it.
150 check_padding "/d" "char" 1
151 check_padding "/d" "short" 2
152 check_padding "/d" "int" 4
153 check_padding "/d" "long" 4
154 check_padding "/d" "long_long" 8
156 # use multiples of two which can be represented exactly
157 check_padding "/f" "float" 1
158 check_padding "/f" "double" 2
159 check_padding "/f" "long_double" 4
162 # For reference, dump out the entire architecture
164 # The output is very long so use a while loop to consume it
165 send_gdb "maint print arch\n"
170 #pass "maint print arch $ok"
171 #set ok [expr $ok + 1]
173 -re "$gdb_prompt $" {
174 pass "maint print arch"
178 fail "maint print arch (timeout)"