]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - 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
1 # Test address printed by --print-map
2 # Copyright (C) 2002-2021 Free Software Foundation, Inc.
3 #
4 # This file is part of the GNU Binutils.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
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.
15 #
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
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
20
21 set testname "map addresses"
22
23 # The source file doesn't matter. Pinch one from the sizeof test.
24 if {![ld_assemble $as $srcdir/$subdir/sizeof.s tmpdir/map-address.o]} {
25 unresolved $testname
26 return
27 }
28
29 if {![ld_link $ld tmpdir/map-address \
30 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
31 tmpdir/map-address.o \
32 -Map tmpdir/map-address.map"]} {
33 fail $testname
34 return
35 }
36
37 if [is_remote host] then {
38 remote_upload host "tmpdir/map_address.map"
39 }
40
41 if {[regexp_diff \
42 "tmpdir/map-address.map" \
43 "$srcdir/$subdir/map-address.d"]} {
44 fail $testname
45 } else {
46 pass $testname
47 }
48
49
50 set testname "map to directory"
51
52 if {![ld_link $ld tmpdir/map-address \
53 "$LDFLAGS -T $srcdir/$subdir/map-address.t \
54 tmpdir/map-address.o \
55 -Map tmpdir --output fred"]} {
56 fail $testname
57 return
58 }
59
60 if [is_remote host] then {
61 remote_upload host "tmpdir/fred.map"
62 }
63
64 if {[regexp_diff \
65 "tmpdir/fred.map" \
66 "$srcdir/$subdir/map-address.d"]} {
67 fail $testname
68 } else {
69 pass $testname
70 }
71
72
73 set testname "map to % directory"
74
75 if {![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
83 if [is_remote host] then {
84 remote_upload host "tmpdir/fred.map"
85 }
86
87 if {[regexp_diff \
88 "tmpdir/fred.map" \
89 "$srcdir/$subdir/map-address.d"]} {
90 fail $testname
91 } else {
92 pass $testname
93 }
94
95
96 set testname "map to %.foo directory"
97
98 if {![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
106 if [is_remote host] then {
107 remote_upload host "tmpdir/fred.foo"
108 }
109
110 if {[regexp_diff \
111 "tmpdir/fred.foo" \
112 "$srcdir/$subdir/map-address.d"]} {
113 fail $testname
114 } else {
115 pass $testname
116 }