diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/elf.exp | 1 | ||||
-rw-r--r-- | gas/testsuite/gas/symver/symver.exp | 3 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 3 |
4 files changed, 11 insertions, 2 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 07689b6..7c4bdc2 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-11-08 Thomas Schwinge <thomas@schwinge.name> + + * lib/gas-defs.exp (is_elf_format): Consider for *-*-gnu*, too. + * gas/elf/elf.exp: Likewise. + * gas/symver/symver.exp: Likewise. + 2010-11-03 H.J. Lu <hongjiu.lu@intel.com> PR gas/12186 diff --git a/gas/testsuite/gas/elf/elf.exp b/gas/testsuite/gas/elf/elf.exp index 5ce538a..1aebf8a 100644 --- a/gas/testsuite/gas/elf/elf.exp +++ b/gas/testsuite/gas/elf/elf.exp @@ -39,6 +39,7 @@ proc run_elf_list_test { name suffix opts readelf_opts readelf_pipe } { # We're testing bits in obj-elf -- don't run on anything else. if { ([istarget "*-*-*elf*"] || [istarget "*-*-linux*"] + || [istarget "*-*-gnu*"] || [istarget "m6811-*"] || [istarget "m6812-*"] || [istarget "sparc*-*-solaris*"] diff --git a/gas/testsuite/gas/symver/symver.exp b/gas/testsuite/gas/symver/symver.exp index 737bc85..b4caae9 100644 --- a/gas/testsuite/gas/symver/symver.exp +++ b/gas/testsuite/gas/symver/symver.exp @@ -18,7 +18,8 @@ proc run_error_test { name opts } { if { ([istarget "*-*-elf*"] || [istarget "m6811-*"] || [istarget "m6812-*"] - || [istarget "*-*-linux*"]) + || [istarget "*-*-linux*"] + || [istarget "*-*-gnu*"]) && ![istarget *-*-linux*aout*] && ![istarget *-*-linux*oldld*] } then { diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 8e14101..3102aa0 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -1,5 +1,5 @@ # Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -# 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc. +# 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -288,6 +288,7 @@ proc is_elf_format {} { && ![istarget hppa*64*-*-hpux*] && ![istarget ia64-*-hpux*] && ![istarget *-*-linux*] + && ![istarget *-*-gnu*] && ![istarget frv-*-uclinux*] && ![istarget bfin-*-uclinux] && ![istarget sh*-*-uclinux*] |