PR ld/12001
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / extern.exp
CommitLineData
8545d1a9
NS
1# Test EXTERN in a linker script.
2# By Nathan Sidwell, CodeSourcery LLC
3# Copyright 2007
4# Free Software Foundation, Inc.
5#
f96b4a7b
NC
6# This file is part of the GNU Binutils.
7#
8# This program is free software; you can redistribute it and/or modify
8545d1a9 9# it under the terms of the GNU General Public License as published by
f96b4a7b 10# the Free Software Foundation; either version 3 of the License, or
8545d1a9 11# (at your option) any later version.
f96b4a7b 12#
8545d1a9
NS
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
f96b4a7b 17#
8545d1a9
NS
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
f96b4a7b
NC
20# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21# MA 02110-1301, USA.
8545d1a9
NS
22
23set testname "EXTERN"
24
25if ![ld_assemble $as $srcdir/$subdir/extern.s tmpdir/extern.o] {
26 unresolved $testname
27 return
28}
29
30if ![ld_simple_link $ld tmpdir/extern "-T $srcdir/$subdir/extern.t tmpdir/extern.o"] {
31 fail $testname
32}
33
34if ![ld_nm $nm "" tmpdir/extern] {
35 unresolved $testname
36 return
37}
38
39if {![info exists nm_output(sym1)] || $nm_output(sym1) != 1} {
40 send_log "sym1 wrong\n"
41 verbose "sym1 wrong"
42 fail $testname
43 return
44}
45
46if {![info exists nm_output(sym2)] || $nm_output(sym2) != 2} {
47 send_log "sym1 wrong\n"
48 verbose "sym1 wrong"
49 fail $testname
50 return
51}
52if {![info exists nm_output(sym3)] || $nm_output(sym3) != 3} {
53 send_log "sym1 wrong\n"
54 verbose "sym1 wrong"
55 fail $testname
56 return
57}
58if {![info exists nm_output(sym4)] || $nm_output(sym4) != 4} {
59 send_log "sym1 wrong\n"
60 verbose "sym1 wrong"
61 fail $testname
62 return
63}
64if {![info exists nm_output(sym5)] || $nm_output(sym5) != 5} {
65 send_log "sym1 wrong\n"
66 verbose "sym1 wrong"
67 fail $testname
68 return
69}
70
71pass $testname
This page took 0.153798 seconds and 4 git commands to generate.