From: Alan Modra Date: Sat, 20 Jun 2020 01:17:32 +0000 (+0930) Subject: ecoff testsuite fixes X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b0ee49d21ba0c4b7f9817db01dc247255eebd516;p=deliverable%2Fbinutils-gdb.git ecoff testsuite fixes The aim of this change is to remove a whole lot of "assembly failed" errors for ecoff targets. * testsuite/ld-alpha/alpha.exp: Exclude *ecoff targets. * testsuite/ld-elf/binutils.exp: Likewise. * testsuite/ld-elf/tls.exp: Likewise. * testsuite/ld-elf/tls_common.exp: Likewise. * testsuite/ld-scripts/phdrs2.exp: Likewise. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index c47fbca01c..f9e4a43ce1 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,11 @@ +2020-06-20 Alan Modra + + * testsuite/ld-alpha/alpha.exp: Exclude *ecoff targets. + * testsuite/ld-elf/binutils.exp: Likewise. + * testsuite/ld-elf/tls.exp: Likewise. + * testsuite/ld-elf/tls_common.exp: Likewise. + * testsuite/ld-scripts/phdrs2.exp: Likewise. + 2020-06-20 Alan Modra * testsuite/ld-sh/sh.exp: Don't run relax tests for non-ELF. diff --git a/ld/testsuite/ld-alpha/alpha.exp b/ld/testsuite/ld-alpha/alpha.exp index f4a395bed4..084f7f9960 100644 --- a/ld/testsuite/ld-alpha/alpha.exp +++ b/ld/testsuite/ld-alpha/alpha.exp @@ -22,8 +22,8 @@ # Test Alpha ELF linking; all types of relocs. This tests the # assembler and tools like objdump as well as the linker. -if { !([istarget "alpha*-*-elf*"] - || [istarget "alpha*-*-linux*"]) } { +if { !([istarget alpha*-*-elf*] + || ([istarget alpha*-*-linux*] && ![istarget *ecoff])) } { return } diff --git a/ld/testsuite/ld-elf/binutils.exp b/ld/testsuite/ld-elf/binutils.exp index ecaecdd05b..fc54c9869f 100644 --- a/ld/testsuite/ld-elf/binutils.exp +++ b/ld/testsuite/ld-elf/binutils.exp @@ -23,10 +23,10 @@ # Make sure that binutils can correctly handle ld output in ELF. -if { ![istarget *-*-linux*] - && ![istarget arm*-*-uclinuxfdpiceabi] - && ![istarget *-*-nacl*] - && ![istarget *-*-gnu*]} { +if { !([istarget *-*-linux*] + || [istarget arm*-*-uclinuxfdpiceabi] + || [istarget *-*-nacl*] + || [istarget *-*-gnu*]) || [istarget *ecoff] } then { return } diff --git a/ld/testsuite/ld-elf/tls.exp b/ld/testsuite/ld-elf/tls.exp index 15c382fcb4..8afbb9f129 100644 --- a/ld/testsuite/ld-elf/tls.exp +++ b/ld/testsuite/ld-elf/tls.exp @@ -21,10 +21,10 @@ # Make sure that binutils can correctly handle TLS. -if { ![istarget *-*-linux*] - && ![istarget arm*-*-uclinuxfdpiceabi] - && ![istarget *-*-nacl*] - && ![istarget *-*-gnu*] } { +if { !([istarget *-*-linux*] + || [istarget arm*-*-uclinuxfdpiceabi] + || [istarget *-*-nacl*] + || [istarget *-*-gnu*]) || [istarget *ecoff] } then { return } diff --git a/ld/testsuite/ld-elf/tls_common.exp b/ld/testsuite/ld-elf/tls_common.exp index 3e14ccfc21..2b6532550f 100644 --- a/ld/testsuite/ld-elf/tls_common.exp +++ b/ld/testsuite/ld-elf/tls_common.exp @@ -23,10 +23,10 @@ # Make sure that binutils can correctly handle ld output in ELF. -if { ![istarget *-*-linux*] - && ![istarget arm*-*-uclinuxfdpiceabi] - && ![istarget *-*-nacl*] - && ![istarget *-*-gnu*] } { +if { !([istarget *-*-linux*] + || [istarget arm*-*-uclinuxfdpiceabi] + || [istarget *-*-nacl*] + || [istarget *-*-gnu*]) || [istarget *ecoff] } then { return } diff --git a/ld/testsuite/ld-scripts/phdrs2.exp b/ld/testsuite/ld-scripts/phdrs2.exp index d781c6dafb..2fae24fed5 100644 --- a/ld/testsuite/ld-scripts/phdrs2.exp +++ b/ld/testsuite/ld-scripts/phdrs2.exp @@ -19,17 +19,17 @@ # MA 02110-1301, USA. # PHDRS2 is only meaningful for ELF. -if { ![istarget *-*-sysv4*] \ - && ![istarget *-*-unixware*] \ - && ![istarget *-*-elf*] \ - && ![istarget *-*-eabi*] \ - && ![istarget hppa*64*-*-hpux*] \ - && ![istarget *-*-linux*] \ - && ![istarget arm*-*-uclinuxfdpiceabi] \ - && ![istarget *-*-gnu*] \ - && ![istarget *-*-irix5*] \ - && ![istarget *-*-irix6*] \ - && ![istarget *-*-solaris2*] } { +if { !([istarget *-*-sysv4*] + || [istarget *-*-unixware*] + || [istarget *-*-elf*] + || [istarget *-*-eabi*] + || [istarget hppa*64*-*-hpux*] + || [istarget *-*-linux*] + || [istarget arm*-*-uclinuxfdpiceabi] + || [istarget *-*-gnu*] + || [istarget *-*-irix5*] + || [istarget *-*-irix6*] + || [istarget *-*-solaris2*]) || [istarget *ecoff] } then { return }