2004-02-20 23:31:10 +08:00
|
|
|
# Test ALIGN in a linker script.
|
|
|
|
# By Nathan Sidwell, CodeSourcery LLC
|
2005-03-03 19:52:12 +08:00
|
|
|
# Copyright 2004, 2005
|
2004-02-20 23:31:10 +08:00
|
|
|
# Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2005-05-12 15:32:09 +08:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-02-20 23:31:10 +08:00
|
|
|
|
2004-04-08 08:51:37 +08:00
|
|
|
if [istarget "rs6000-*-aix*"] {
|
|
|
|
# Target maps .text and .data to other sections.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-02-18 04:57:01 +08:00
|
|
|
set testname "align1"
|
2004-02-20 23:31:10 +08:00
|
|
|
|
|
|
|
if ![ld_assemble $as $srcdir/$subdir/align.s tmpdir/align.o] {
|
|
|
|
unresolved $testname
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-06-01 12:04:19 +08:00
|
|
|
# Doesn't work on PECOFF, appears to be a genuine bug
|
|
|
|
if [is_pecoff_format] {
|
|
|
|
global target_triplet
|
|
|
|
setup_xfail $target_triplet
|
|
|
|
}
|
|
|
|
|
2004-02-20 23:31:10 +08:00
|
|
|
if ![ld_simple_link $ld tmpdir/align "-T $srcdir/$subdir/align.t tmpdir/align.o"] {
|
|
|
|
fail $testname
|
|
|
|
} else {
|
|
|
|
pass $testname
|
|
|
|
}
|
2005-02-18 04:57:01 +08:00
|
|
|
|
2005-02-21 16:18:49 +08:00
|
|
|
if ![is_aout_format] {
|
2005-10-26 01:40:19 +08:00
|
|
|
# The z80-coff port defaults to a "binary" like output
|
|
|
|
# file format which does not include a data section.
|
|
|
|
setup_xfail "z80-*-coff"
|
2005-02-21 16:18:49 +08:00
|
|
|
run_dump_test align2a
|
2005-10-26 01:40:19 +08:00
|
|
|
setup_xfail "z80-*-coff"
|
2005-02-21 16:18:49 +08:00
|
|
|
run_dump_test align2b
|
|
|
|
}
|
2005-02-18 04:57:01 +08:00
|
|
|
run_dump_test align2c
|