]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/map-address.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / map-address.exp
CommitLineData
33a301ba 1# Test address printed by --print-map
250d07de 2# Copyright (C) 2002-2021 Free Software Foundation, Inc.
33a301ba 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
33a301ba 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
33a301ba 9# (at your option) any later version.
f96b4a7b 10#
33a301ba
RS
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f96b4a7b 15#
33a301ba
RS
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
33a301ba
RS
20
21set testname "map addresses"
22
23# The source file doesn't matter. Pinch one from the sizeof test.
a155881b 24if {![ld_assemble $as $srcdir/$subdir/sizeof.s tmpdir/map-address.o]} {
33a301ba
RS
25 unresolved $testname
26 return
27}
28
d9816402 29if {![ld_link $ld tmpdir/map-address \
740341b9 30 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
33a301ba 31 tmpdir/map-address.o \
a155881b 32 -Map tmpdir/map-address.map"]} {
33a301ba 33 fail $testname
7f6a71ff
JM
34 return
35}
36
37if [is_remote host] then {
38 remote_upload host "tmpdir/map_address.map"
39}
40
41if {[regexp_diff \
a155881b
RS
42 "tmpdir/map-address.map" \
43 "$srcdir/$subdir/map-address.d"]} {
33a301ba
RS
44 fail $testname
45} else {
46 pass $testname
47}
198204a7 48
2c72361c 49
198204a7
NC
50set testname "map to directory"
51
52if {![ld_link $ld tmpdir/map-address \
740341b9 53 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
198204a7
NC
54 tmpdir/map-address.o \
55 -Map tmpdir --output fred"]} {
56 fail $testname
57 return
58}
59
60if [is_remote host] then {
61 remote_upload host "tmpdir/fred.map"
62}
63
64if {[regexp_diff \
65 "tmpdir/fred.map" \
66 "$srcdir/$subdir/map-address.d"]} {
67 fail $testname
68} else {
69 pass $testname
70}
2c72361c
NC
71
72
73set testname "map to % directory"
74
75if {![ld_link $ld tmpdir/map-address \
76 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
77 tmpdir/map-address.o \
78 -Map=tmpdir/% --output fred"]} {
79 fail $testname
80 return
81}
82
83if [is_remote host] then {
84 remote_upload host "tmpdir/fred.map"
85}
86
87if {[regexp_diff \
88 "tmpdir/fred.map" \
89 "$srcdir/$subdir/map-address.d"]} {
90 fail $testname
91} else {
92 pass $testname
93}
94
95
96set testname "map to %.foo directory"
97
98if {![ld_link $ld tmpdir/map-address \
99 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
100 tmpdir/map-address.o \
101 -Map=tmpdir/%.foo --output fred"]} {
102 fail $testname
103 return
104}
105
106if [is_remote host] then {
107 remote_upload host "tmpdir/fred.foo"
108}
109
110if {[regexp_diff \
111 "tmpdir/fred.foo" \
112 "$srcdir/$subdir/map-address.d"]} {
113 fail $testname
114} else {
115 pass $testname
116}