diff options
author | Nick Clifton <nickc@redhat.com> | 2016-06-22 14:42:26 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-06-22 14:42:26 +0100 |
commit | 96037eb0b8c22e0b080863362bee4a4f6fc476ed (patch) | |
tree | 4d69ede78b95060a6a049cfeca9668b676fb61a6 /binutils/testsuite/binutils-all/ar.exp | |
parent | gold: Add a linker configure option --enable-relro (diff) | |
download | binutils-gdb-96037eb0b8c22e0b080863362bee4a4f6fc476ed.tar.gz binutils-gdb-96037eb0b8c22e0b080863362bee4a4f6fc476ed.tar.bz2 binutils-gdb-96037eb0b8c22e0b080863362bee4a4f6fc476ed.zip |
Fix various binutils testsuite failures.
* testsuite/binutils-all/ar.exp: Skip tests for Alpha target.
Skip bfdtest1 tests for tic30 target.
* testsuite/binutils-all/arm/objdump.exp: Skip for aout arm
target.
* testsuite/binutils-all/compress.exp: Expect some tests to fail
on the nds32.
* testsuite/binutils-all/copy-3.d: Skip for go32 targets.
* testsuite/binutils-all/copy-4.d: Skip for AIX and linuxecoff
targets.
* testsuite/binutils-all/nm.exp: Treat beos based targets as ELF
targets.
* testsuite/binutils-all/objcopy.exp: Only run reverse bytes tests
if the bintest.o file was created. Use the
get_standard_section_names proc to get the name of the data
section.
* testsuite/binutils-all/objdump.exp: Update regexps to allow for
RX section names.
* testsuite/binutils-all/readelf.exp: Use
get_standard_section_names proc to get the name of the data
section.
* testsuite/binutils-all/readelf.r: Allow for non standard text
section names.
* testsuite/binutils-all/readelf.s: Update regexps for tilepro.
* testsuite/binutils-all/size.exp: Allow for non standard section
names.
* testsuite/binutils-all/update-section.exp: Expect comapre 1vs4
to fail on mips targets.
* testsuite/lib/utils-lib.exp (default_binutils_run): Use
get_standard_section_names proc.
(run_dump_test): Likewise.
(proc get_standard_section_names): New proc.
Diffstat (limited to 'binutils/testsuite/binutils-all/ar.exp')
-rw-r--r-- | binutils/testsuite/binutils-all/ar.exp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/binutils/testsuite/binutils-all/ar.exp b/binutils/testsuite/binutils-all/ar.exp index 45be9b1b594..b8e0e20a1a5 100644 --- a/binutils/testsuite/binutils-all/ar.exp +++ b/binutils/testsuite/binutils-all/ar.exp @@ -26,6 +26,10 @@ if ![is_remote host] { } } +if {[istarget "alpha-*-*"]} then { + return +} + # send_user "Version [binutil_version $AR]" # Test long file name support @@ -600,7 +604,7 @@ proc empty_archive { } { # programs are built but not installed, running the testsuite on an # installed toolchain will produce ERRORs about missing bfdtest1 and # bfdtest2 executables. -if { [file exists $base_dir/bfdtest1] && [file exists $base_dir/bfdtest2] } { +if { ![istarget "tic30-*-*"] && [file exists $base_dir/bfdtest1] && [file exists $base_dir/bfdtest2] } { set bfdtests [list bfdtest1 bfdtest2] long_filenames $bfdtests |