1 # Copyright
1999, 2000, 2001, 2003, 2004, 2007, 2009
2 # 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
, write to the Free Software
16 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
18 # Please email
any bugs
, comments
, and
/or additions to this file to
:
19 # bug
-dejagnu@prep.ai.mit.edu
21 # Written by Nick Clifton
<nickc@cygnus.com
>
22 # Based
on scripts written by Ian Lance Taylor
<ian@cygnus.com
>
23 # and Ken Raeburn
<raeburn@cygnus.com
>.
25 # Exclude non
-ELF targets.
27 verbose
"$READELF is only intended for ELF targets" 2
31 # First some helpful procedures
, then the tests themselves
33 #
Return the contents of the filename given
34 proc file_contents
{ filename
} {
35 set file
[open $filename r
]
36 set contents
[read $file
]
41 # Find out the size by reading the output of the EI_CLASS field.
42 # Similar to the test
for readelf
-h
, but we
're just looking for the
44 proc readelf_find_size { binary_file } {
50 set testname "finding out ELF size with readelf -h"
51 set got [remote_exec host "$READELF $READELFFLAGS -h $binary_file" "" "/dev/null" "readelf.out"]
52 if [is_remote host] then {
53 remote_upload host "readelf.out"
56 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]]} then {
62 if { ! [regexp "\n\[ \]*Class:\[ \]*ELF(\[0-9\]+)\n" \
63 [file_contents readelf.out] nil readelf_size] } {
64 verbose -log "EI_CLASS field not found in output"
65 verbose -log "output is \n[file_contents readelf.out]"
69 verbose -log "ELF size is $readelf_size"
75 # Run an individual readelf test.
76 # Basically readelf is run on the binary_file with the given options.
77 # Readelf's output is captured and
then compared against the contents
78 # of the regexp_file
-readelf_size
if it
exists, else regexp_file.
80 proc readelf_test
{ options binary_file regexp_file xfails
} {
88 send_log
"exec $READELF $READELFFLAGS $options $binary_file > readelf.out\n"
89 set got
[remote_exec host
"$READELF $READELFFLAGS $options $binary_file" "" "/dev/null" "readelf.out"]
91 foreach xfail $xfails
{
95 if { [lindex $got
0] != 0 ||
![string match
"" [lindex $got 1]] } then {
96 fail
"readelf $options (reason: unexpected output)"
102 set target_machine
""
103 if [istarget
"mips*-*-*"] then {
104 if { [istarget
"mips*-*-*linux*"] || [istarget "mips*-sde-elf*"] } then {
105 set target_machine tmips
107 set target_machine mips
111 if { $target_machine
!= "" && [file exists $srcdir/$subdir/$regexp_file-$readelf_size-$target_machine] } then {
112 set regexp_file $regexp_file
-$readelf_size
-$target_machine
113 } elseif
{ $target_machine
!= "" && [file exists $srcdir/$subdir/$regexp_file-$target_machine] } then {
114 set regexp_file $regexp_file
-$target_machine
115 } elseif
{ [file
exists $srcdir
/$subdir
/$regexp_file
-$readelf_size
] } then {
116 set regexp_file $regexp_file
-$readelf_size
119 if { [regexp_diff readelf.out $srcdir
/$subdir
/$regexp_file
] } then {
120 fail
"readelf $options"
121 verbose
"output is \n[file_contents readelf.out]" 2
125 pass
"readelf $options"
128 # Simple proc to skip certain expected warning messages.
130 proc prune_readelf_wi_warnings
{ text } {
131 regsub
-all
"(^|\n)(.*Skipping unexpected symbol type.*)" $text "\\1" text
135 # Testing the
"readelf -wi" option is difficult because there
136 # is no guaranteed order to the output
, and because some ports
137 # will use indirect string references
, whilst others will use
138 # direct references. So instead of having an expected output
139 # file
, like the other readelf tests
, we grep
for strings that
140 # really ought to be there.
142 proc readelf_wi_test
{} {
148 #
Compile the second test file.
149 if { [target_compile $srcdir
/$subdir
/testprog.c tmpdir
/testprog.o object debug
] != "" } {
150 verbose
"Unable to compile test file."
151 untested
"readelf -wi"
156 set tempfile
[remote_download host tmpdir
/testprog.o
]
158 # Run
"readelf -wi" on it.
159 set got
[remote_exec host
"$READELF $READELFFLAGS -wi $tempfile" "" "/dev/null" "readelf.out"]
161 # Upload the results.
162 set output
[remote_upload host readelf.out
]
164 file_on_host
delete $tempfile
166 #
Strip any superflous warnings.
167 set got
[prune_readelf_wi_warnings
[lindex $got
1]]
169 if ![string match
"" $got] then {
170 fail
"readelf $READELFFLAGS -wi (reason: unexpected output)"
176 if ![file size $output
] then {
177 #
If the output file is empty
, then this target does not
178 # generate dwarf2 output. This is not a failure.
179 verbose
"No output from 'readelf -wi'"
180 untested
"readelf -wi"
184 # Search
for strings that should be in the output.
186 ".*DW_TAG_compile_unit.*"
187 ".*DW_TAG_subprogram.*"
188 ".*DW_TAG_base_type.*"
189 ".*DW_AT_producer.*(GNU C|indirect string).*"
190 ".*DW_AT_language.*ANSI C.*"
191 ".*DW_AT_name.*(testprog.c|indirect string).*"
193 ".*DW_AT_name.*(main|indirect string).*"
194 ".*\(DW_OP_addr: 0\).*"
197 foreach looked_for $sought
{
198 set lines
[grep $output $looked_for
]
199 if ![llength $lines
] then {
200 fail
"readelf -wi: missing: $looked_for"
206 file_on_host
delete $output
212 # This tests
"readelf -wa", but on a file with a compressed
213 # .debug_abbrev section.
215 proc readelf_compressed_wa_test
{} {
221 #
Compile the compressed
-debug
-section test file.
222 if { [target_compile $srcdir
/$subdir
/dw2
-compressed.S tmpdir
/dw2
-compressed.o object debug
] != "" } {
223 verbose
"Unable to compile test file."
224 untested
"readelf -wa (compressed)"
229 set tempfile
[remote_download host tmpdir
/dw2
-compressed.o
]
231 # Run
"readelf -wa" on it.
232 set got
[remote_exec host
"$READELF $READELFFLAGS -wa $tempfile" "" "/dev/null" "readelf.out"]
234 # Upload the results.
235 set output
[remote_upload host readelf.out
]
237 file_on_host
delete $tempfile
239 if { [string compare
[file_contents readelf.out
] [file_contents $srcdir
/$subdir
/readelf.wa
]] != 0 } then {
240 fail
"readelf -wa (compressed)"
241 verbose
"output is \n[file_contents readelf.out]" 2
242 verbose
"expected is \n[file_contents $srcdir/$subdir/readelf.wa]" 2
246 pass
"readelf -wa (compressed)"
249 # Test readelf
's dumping abilities.
251 proc readelf_dump_test {} {
257 # Assemble the dump test file.
258 if {![binutils_assemble $srcdir/$subdir/dumptest.s tmpdir/dumptest.o]} then {
259 unresolved "readelf -p: failed to assemble dump test file"
263 set tempfile [remote_download host tmpdir/dumptest.o]
265 # Run "readelf -p.data" on it.
266 set got [remote_exec host "$READELF $READELFFLAGS -p.data $tempfile" "" "/dev/null" "readelf.out"]
267 set got [lindex $got 1]
269 # Upload the results.
270 set output [remote_upload host readelf.out]
272 # Check for something going wrong.
273 if ![string match "" $got] then {
274 fail "readelf -p: unexpected output"
280 # Search for strings that should be in the output.
285 foreach looked_for $sought {
286 set lines [grep $output $looked_for]
287 if ![llength $lines] then {
288 fail "readelf -p: missing: $looked_for"
294 file_on_host delete $tempfile
295 file_on_host delete $output
300 # XXX FIXME: Add test of readelf -x here
303 if ![is_remote host] {
304 if {[which $READELF] == 0} then {
305 perror "$READELF does not exist"
310 send_user "Version [binutil_version $READELF]"
312 # Assemble the test file.
313 if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
314 perror "could not assemble test file"
315 unresolved "readelf - failed to assemble"
319 if ![is_remote host] {
320 set tempfile tmpdir/bintest.o
322 set tempfile [remote_download host tmpdir/bintest.o]
325 # First, determine the size, so specific output matchers can be used.
326 readelf_find_size $tempfile
329 readelf_test -h $tempfile readelf.h {}
330 readelf_test -S $tempfile readelf.s {}
331 readelf_test -s $tempfile readelf.ss {}
332 readelf_test -r $tempfile readelf.r {}
335 readelf_compressed_wa_test