1 # Copyright 1999, 2000, 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-dejagnu@prep.ai.mit.edu
20 # Written by Nick Clifton <nickc@cygnus.com>
21 # Based on scripts written by Ian Lance Taylor <ian@cygnus.com>
22 # and Ken Raeburn <raeburn@cygnus.com>.
24 # Exclude non-ELF targets.
26 verbose "$READELF is only intended for ELF targets" 2
30 # First some helpful procedures, then the tests themselves
32 # Return the contents of the filename given
33 proc file_contents { filename } {
34 set file [open $filename r]
35 set contents [read $file]
40 # Find out the size by reading the output of the EI_CLASS field.
41 # Similar to the test for readelf -h, but we're just looking for the
43 proc readelf_find_size { binary_file } {
49 set testname "finding out ELF size with readelf -h"
50 set got [remote_exec host "$READELF $READELFFLAGS -h $binary_file" "" "/dev/null" "readelf.out"]
51 if [is_remote host] then {
52 remote_upload host "readelf.out"
55 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]]} then {
61 if { ! [regexp "\n\[ \]*Class:\[ \]*ELF(\[0-9\]+)\n" \
62 [file_contents readelf.out] nil readelf_size] } {
63 verbose -log "EI_CLASS field not found in output"
64 verbose -log "output is \n[file_contents readelf.out]"
68 verbose -log "ELF size is $readelf_size"
74 # Run an individual readelf test.
75 # Basically readelf is run on the binary_file with the given options.
76 # Readelf's output is captured and then compared against the contents
77 # of the regexp_file-readelf_size if it exists, else regexp_file.
79 proc readelf_test { options binary_file regexp_file xfails } {
87 send_log "exec $READELF $READELFFLAGS $options $binary_file > readelf.out\n"
88 set got [remote_exec host "$READELF $READELFFLAGS $options $binary_file" "" "/dev/null" "readelf.out"]
90 foreach xfail $xfails {
94 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
95 fail "readelf $options (reason: unexpected output)"
101 set target_machine ""
102 if [istarget "mips*-*-*"] then {
103 if { [istarget "mips*-*-*linux*"] || [istarget "mips*-sde-elf*"] } then {
104 set target_machine tmips
106 set target_machine mips
110 if { $target_machine != "" && [file exists $srcdir/$subdir/$regexp_file-$readelf_size-$target_machine] } then {
111 set regexp_file $regexp_file-$readelf_size-$target_machine
112 } elseif { $target_machine != "" && [file exists $srcdir/$subdir/$regexp_file-$target_machine] } then {
113 set regexp_file $regexp_file-$target_machine
114 } elseif { [file exists $srcdir/$subdir/$regexp_file-$readelf_size] } then {
115 set regexp_file $regexp_file-$readelf_size
118 if { [regexp_diff readelf.out $srcdir/$subdir/$regexp_file] } then {
119 fail "readelf $options"
120 verbose "output is \n[file_contents readelf.out]" 2
124 pass "readelf $options"
127 # Simple proc to skip certain expected warning messages.
129 proc prune_readelf_wi_warnings { text } {
130 regsub -all "(^|\n)(.*Skipping unexpected symbol type.*)" $text "\\1" text
134 # Testing the "readelf -wi" option is difficult because there
135 # is no guaranteed order to the output, and because some ports
136 # will use indirect string references, whilst others will use
137 # direct references. So instead of having an expected output
138 # file, like the other readelf tests, we grep for strings that
139 # really ought to be there.
141 proc readelf_wi_test {} {
147 # Compile the second test file.
148 if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
149 verbose "Unable to compile test file."
150 untested "readelf -wi"
155 set tempfile [remote_download host tmpdir/testprog.o]
157 # Run "readelf -wi" on it.
158 set got [remote_exec host "$READELF $READELFFLAGS -wi $tempfile" "" "/dev/null" "readelf.out"]
160 # Upload the results.
161 set output [remote_upload host readelf.out]
163 file_on_host delete $tempfile
165 # Strip any superflous warnings.
166 set got [prune_readelf_wi_warnings [lindex $got 1]]
168 if ![string match "" $got] then {
169 fail "readelf $READELFFLAGS -wi (reason: unexpected output)"
175 if ![file size $output] then {
176 # If the output file is empty, then this target does not
177 # generate dwarf2 output. This is not a failure.
178 verbose "No output from 'readelf -wi'"
179 untested "readelf -wi"
183 # Search for strings that should be in the output.
185 ".*DW_TAG_compile_unit.*"
186 ".*DW_TAG_subprogram.*"
187 ".*DW_TAG_base_type.*"
188 ".*DW_AT_producer.*(GNU C|indirect string).*"
189 ".*DW_AT_language.*ANSI C.*"
190 ".*DW_AT_name.*(testprog.c|indirect string).*"
192 ".*DW_AT_name.*(main|indirect string).*"
193 ".*\(DW_OP_addr: 0\).*"
196 foreach looked_for $sought {
197 set lines [grep $output $looked_for]
198 if ![llength $lines] then {
199 fail "readelf -wi: missing: $looked_for"
205 file_on_host delete $output
212 # Test readelf's dumping abilities.
214 proc readelf_dump_test {} {
220 # Assemble the dump test file.
221 if {![binutils_assemble $srcdir/$subdir/dumptest.s tmpdir/dumptest.o]} then {
222 unresolved "readelf -p: failed to assemble dump test file"
226 set tempfile [remote_download host tmpdir/dumptest.o]
228 # Run "readelf -p.data" on it.
229 set got [remote_exec host "$READELF $READELFFLAGS -p.data $tempfile" "" "/dev/null" "readelf.out"]
230 set got [lindex $got 1]
232 # Upload the results.
233 set output [remote_upload host readelf.out]
235 # Check for something going wrong.
236 if ![string match "" $got] then {
237 fail "readelf -p: unexpected output"
243 # Search for strings that should be in the output.
248 foreach looked_for $sought {
249 set lines [grep $output $looked_for]
250 if ![llength $lines] then {
251 fail "readelf -p: missing: $looked_for"
257 file_on_host delete $tempfile
258 file_on_host delete $output
263 # XXX FIXME: Add test of readelf -x here
266 if ![is_remote host] {
267 if {[which $READELF] == 0} then {
268 perror "$READELF does not exist"
273 send_user "Version [binutil_version $READELF]"
275 # Assemble the test file.
276 if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
277 perror "could not assemble test file"
278 unresolved "readelf - failed to assemble"
282 if ![is_remote host] {
283 set tempfile tmpdir/bintest.o
285 set tempfile [remote_download host tmpdir/bintest.o]
288 # First, determine the size, so specific output matchers can be used.
289 readelf_find_size $tempfile
292 readelf_test -h $tempfile readelf.h {}
293 readelf_test -S $tempfile readelf.s {}
294 readelf_test -s $tempfile readelf.ss {}
295 readelf_test -r $tempfile readelf.r {}