(readelf -S test, readelf -s test): Expect mips*-*-* to fail.

This commit is contained in:
Nick Clifton 2000-10-19 18:04:56 +00:00
parent d3ee60d90e
commit 9a1c93833a
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2000-10-19 Chris Demetriou <cgd@sibyte.com>
* binutils-all/readelf.exp (readelf_test): Work properly
when multiple targets expect failtures.
(readelf -S test, readelf -s test): Expect mips*-*-*
to fail.
2000-07-10 Alan Modra <alan@linuxcare.com.au>
* lib/utils-lib.exp (default_binutils_assemble): Don't do the hppa

View File

@ -166,8 +166,8 @@ proc readelf_test { options binary_file regexp_file xfails } {
send_log "exec $READELF $READELFFLAGS $options $binary_file > readelf.out\n"
catch "exec $READELF $READELFFLAGS $options $binary_file > readelf.out" got
if { [llength $xfails] != 0 } then {
setup_xfail $xfails
foreach xfail $xfails {
setup_xfail $xfail
}
if ![string match "" $got] then {
@ -231,9 +231,11 @@ readelf_test -h $tempfile readelf.h {}
# The v850 fails the next two tests because it creates two special
# sections of its own: .call_table_data and .call_table_text
# The regexp scripts are not expecting these sections...
# MIPS targets fail because they add .rela.txt (empty), .mdebug,
# and .reginfo sections.
readelf_test -S $tempfile readelf.s {v850*-*-*}
readelf_test -s $tempfile readelf.ss {v850*-*-*}
readelf_test -S $tempfile readelf.s {v850*-*-* mips*-*-*}
readelf_test -s $tempfile readelf.ss {v850*-*-* mips*-*-*}
readelf_test -r $tempfile readelf.r {}