diff options
author | Maciej W. Rozycki <macro@mips.com> | 2018-03-28 13:59:01 -0700 |
---|---|---|
committer | Maciej W. Rozycki <macro@mips.com> | 2018-04-11 12:03:49 +0100 |
commit | c43b2c546be1fead208b816b59c8bdcdf9562571 (patch) | |
tree | b0c19d8fe168500f6907c55201051b9dfefbc0a2 /binutils/testsuite/lib | |
parent | 20db9c52a2073246a5c46a0274569e10b317866f (diff) | |
download | gdb-c43b2c546be1fead208b816b59c8bdcdf9562571.zip gdb-c43b2c546be1fead208b816b59c8bdcdf9562571.tar.gz gdb-c43b2c546be1fead208b816b59c8bdcdf9562571.tar.bz2 |
binutils/testsuite: Also consider `*-*-lynxos*' and `*-*-symbianelf*' ELF
These targets use the ELF format according to `bfd/config.bfd'.
binutils/
* testsuite/lib/binutils-common.exp (is_elf_format): Also return
1 for `*-*-lynxos*' and `*-*-symbianelf*' targets.
Diffstat (limited to 'binutils/testsuite/lib')
-rw-r--r-- | binutils/testsuite/lib/binutils-common.exp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binutils/testsuite/lib/binutils-common.exp b/binutils/testsuite/lib/binutils-common.exp index 8cd569b..325a07c 100644 --- a/binutils/testsuite/lib/binutils-common.exp +++ b/binutils/testsuite/lib/binutils-common.exp @@ -34,11 +34,13 @@ proc is_elf_format {} { && ![istarget *-*-irix5*] && ![istarget *-*-irix6*] && ![istarget *-*-linux*] + && ![istarget *-*-lynxos*] && ![istarget *-*-nacl*] && ![istarget *-*-netbsd*] && ![istarget *-*-openbsd*] && ![istarget *-*-rtems*] && ![istarget *-*-solaris2*] + && ![istarget *-*-symbianelf*] && ![istarget *-*-sysv4*] && ![istarget *-*-unixware*] && ![istarget *-*-wasm32*] |