1 # Copyright
(C
) 1999 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
2 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.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, 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 Clifto
<nickc@cygnus.com
>
21 # Based
on scripts written by Ian Lance Taylor
<ian@cygnus.com
>
22 # and Ken Raeburn
<raeburn@cygnus.com
>.
24 # First some helpful procedures
, then the tests themselves
26 #
Return the contents of the filename given
27 proc file_contents
{ filename
} {
28 set file
[open $filename r
]
29 set contents
[read $file
]
34 # regexp_diff
, based
on simple_diff taken from
ld test suite
35 # compares two files line
-by
-line
36 # file1 contains strings
, file2 contains regexps and #
-comments
37 #
blank lines are ignored in either file
38 # returns non
-zero
if differences exist
40 proc regexp_diff
{ file_1 file_2
} {
48 if [file
exists $file_1
] then {
49 set file_a
[open $file_1 r
]
51 warning
"$file_1 doesn't exist"
55 if [file
exists $file_2
] then {
56 set file_b
[open $file_2 r
]
58 fail
"$file_2 doesn't exist"
63 verbose
" Regexp-diff'ing: $file_1 $file_2" 2
68 while { [string length $line_a
] == 0 } {
69 if { [gets $file_a line_a
] == $eof
} {
74 while { [string length $line_b
] == 0 ||
[string match
"#*" $line_b] } {
75 if [ string match
"#pass" $line_b ] {
80 if { [gets $file_b line_b
] == $eof
} {
88 } elseif
{ $end_1
&& $end_2
} {
91 send_log
"extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n"
92 verbose
"extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3
96 send_log
"extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n"
97 verbose
"extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3
101 verbose
"regexp \"^$line_b$\"\nline \"$line_a\"" 3
102 if ![regexp
"^$line_b$" "$line_a"] {
103 send_log
"regexp_diff match failure\n"
104 send_log
"regexp \"^$line_b$\"\nline \"$line_a\"\n"
111 if { $differences
== 0 && !$diff_pass
&& [eof $file_a
] != [eof $file_b
] } {
112 send_log
"$file_1 and $file_2 are different lengths\n"
113 verbose
"$file_1 and $file_2 are different lengths" 3
123 # Run an individual readelf test.
124 # Basically readelf is run
on the binary_file with the given options.
125 # Readelf
's output is captured and then compared against the contents
126 # of the regexp_file.
128 proc readelf_test { options binary_file regexp_file xfails } {
135 send_log "exec $READELF $READELFFLAGS $options $binary_file > readelf.out"
136 catch "exec $READELF $READELFFLAGS $options $binary_file > readelf.out" got
138 if { [llength $xfails] != 0 } then {
142 if ![string match "" $got] then {
144 fail "readelf $options"
148 if { [regexp_diff readelf.out $srcdir/$subdir/$regexp_file] } then {
149 fail "readelf $options"
150 verbose "output is \n[file_contents readelf.out]" 2
154 pass "readelf $options"
159 # Only ELF based toolchains need readelf.
160 # For now be paranoid and assume that if ELF is not mentioned
161 # in the target string, then the target is not an ELF based port.
163 if ![istarget "*-*elf"] then {
164 verbose "$READELF is only intenteded for ELF targets" 2
168 if ![is_remote host] {
169 if {[which $READELF] == 0} then {
170 perror "$READELF does not exist"
175 send_user "Version [binutil_version $READELF]"
177 # Assemle the test file.
178 if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
179 perror "unresolved 1"
180 unresolved "readelf - failed to assemble"
184 if ![is_remote host] {
185 set tempfile tmpdir/bintest.o;
187 set tempfile [remote_download host tmpdir/bintest.o]
191 readelf_test -h $tempfile readelf.h {}
193 # The v850 fails the next two tests because it creates two special
194 # sections of its own: .call_table_data and .call_table_text
195 # The regexp scripts are not expecting these sections...
197 readelf_test -S $tempfile readelf.s {v850*-*-*}
198 readelf_test -s $tempfile readelf.ss {v850*-*-*}
199 readelf_test -r $tempfile readelf.r {}
202 # Compile the second test file.
203 if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
204 untested "readelf -w"
208 if [is_remote host] {
209 set tempfile [remote_download host tmpdir/testprog.o];
211 set tempfile tmpdir/testprog.o
214 # The xfail targets here do not default to DWARF2 format debug information
215 # The symptom is that the output of 'readelf
-wi
' is empty.
217 readelf_test -wi $tempfile readelf.wi {v850*-*-*}