diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2007-07-02 15:56:46 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2007-07-02 15:56:46 +0000 |
commit | 82c01eb610fe78f3d8f9fbbb89d114601e19d621 (patch) | |
tree | bdc36473ef97e5eb2ad1e1a0fea152a6dfe6661d | |
parent | ae13219ef81570640d856de602d606752f1b562a (diff) | |
download | binutils-82c01eb610fe78f3d8f9fbbb89d114601e19d621.zip binutils-82c01eb610fe78f3d8f9fbbb89d114601e19d621.tar.gz binutils-82c01eb610fe78f3d8f9fbbb89d114601e19d621.tar.bz2 |
* ld-scripts/alignof.exp: Skip on non-elf
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/alignof.exp | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 28099e9..7cb33ce 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-07-02 Nathan Sidwell <nathan@codesourcery.com> + + * ld-scripts/alignof.exp: Skip on non-elf + 2007-06-29 Joseph Myers <joseph@codesourcery.com> * ld-powerpc/attr-gnu-4-0.s, ld-powerpc/attr-gnu-4-00.d, diff --git a/ld/testsuite/ld-scripts/alignof.exp b/ld/testsuite/ld-scripts/alignof.exp index 7b812db..0955e7c 100644 --- a/ld/testsuite/ld-scripts/alignof.exp +++ b/ld/testsuite/ld-scripts/alignof.exp @@ -15,6 +15,12 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. +# Only ELF targets record section alignment. + +if ![is_elf_format] { + return +} + set testname "ALIGNOF" if ![ld_assemble $as $srcdir/$subdir/alignof.s tmpdir/alignof.o] { |