]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/alignof.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / alignof.exp
CommitLineData
362c1d1a 1# Test ALIGNOF in a linker script.
250d07de 2# Copyright (C) 2007-2021 Free Software Foundation, Inc.
f96b4a7b 3# Contributed by Nathan Sidwell <nathan@codesourcery.com>
362c1d1a 4#
f96b4a7b
NC
5# This file is part of the GNU Binutils.
6#
7# This program is free software; you can redistribute it and/or modify
362c1d1a 8# it under the terms of the GNU General Public License as published by
f96b4a7b 9# the Free Software Foundation; either version 3 of the License, or
362c1d1a 10# (at your option) any later version.
f96b4a7b 11#
362c1d1a
NS
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
f96b4a7b 16#
362c1d1a
NS
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
f96b4a7b
NC
19# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20# MA 02110-1301, USA.
362c1d1a 21
11ec4ba9 22# Only ELF and PE-COFF targets record section alignment.
82c01eb6 23
11ec4ba9 24if {![is_elf_format] && ![is_pecoff_format]} {
82c01eb6
NS
25 return
26}
27
362c1d1a
NS
28set testname "ALIGNOF"
29
30if ![ld_assemble $as $srcdir/$subdir/alignof.s tmpdir/alignof.o] {
348fe36b 31 fail $testname
362c1d1a
NS
32 return
33}
34
d9816402 35if ![ld_link $ld tmpdir/alignof "-T $srcdir/$subdir/alignof.t tmpdir/alignof.o"] {
362c1d1a
NS
36 fail $testname
37 return
38}
39
40if ![ld_nm $nm "" tmpdir/alignof] {
348fe36b 41 fail $testname
362c1d1a
NS
42 return
43}
44
45if {![info exists nm_output(alignof_text)] \
46 || ![info exists nm_output(alignof_data)]} {
47 send_log "bad output from nm\n"
48 verbose "bad output from nm"
49 fail $testname
50 return
51}
52
53if {$nm_output(alignof_text) != 64} {
54 send_log "alignof_text != 64\n"
55 verbose "alignof_text != 64"
56 fail $testname
57 return
58}
59
60if {$nm_output(alignof_data) != 16} {
61 send_log "alignof_data != 16\n"
62 verbose "alignof_data != 16"
63 fail $testname
64 return
65}
66
67pass $testname