Fix PE-COFF archiving long name tables
[binutils/dougsmingw.git] / ld / testsuite / ld-scripts / alignof.exp
blob0f05aeb6dfec8599975ecde6b716b1051228e25e
1 # Test ALIGNOF in a linker script.
2 # Copyright 2007 Free Software Foundation, Inc.
3 # Contributed by Nathan Sidwell <nathan@codesourcery.com>
5 # This file is part of the GNU Binutils.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
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.
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
19 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 # MA 02110-1301, USA.
22 # Only ELF and PE-COFF targets record section alignment.
24 if {![is_elf_format] && ![is_pecoff_format]} {
25 return
28 set testname "ALIGNOF"
30 if ![ld_assemble $as $srcdir/$subdir/alignof.s tmpdir/alignof.o] {
31 unresolved $testname
32 return
35 if ![ld_simple_link $ld tmpdir/alignof "-T $srcdir/$subdir/alignof.t tmpdir/alignof.o"] {
36 fail $testname
37 return
40 if ![ld_nm $nm "" tmpdir/alignof] {
41 unresolved $testname
42 return
45 if {![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
53 if {$nm_output(alignof_text) != 64} {
54 send_log "alignof_text != 64\n"
55 verbose "alignof_text != 64"
56 fail $testname
57 return
60 if {$nm_output(alignof_data) != 16} {
61 send_log "alignof_data != 16\n"
62 verbose "alignof_data != 16"
63 fail $testname
64 return
67 pass $testname