Update the address of the FSF in the copyright notice of files which were using the...
[deliverable/binutils-gdb.git] / ld / testsuite / ld-i386 / i386.exp
CommitLineData
37e55690 1# Expect script for ld-i386 tests
2571583a 2# Copyright (C) 2002-2017 Free Software Foundation, Inc.
37e55690 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
37e55690 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
37e55690
JJ
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
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
37e55690
JJ
20#
21
22# Test i386 linking; all types of relocs. This tests the assembler and
23# tools like objdump as well as the linker.
24
b9201bb3
RS
25if {[istarget "i?86-*-vxworks"]} {
26 set i386tests {
bab55c05
AM
27 {"VxWorks shared library test 1"
28 "-shared -Tvxworks1.ld --hash-style=sysv" ""
b9201bb3 29 "" {vxworks1-lib.s}
711de32c 30 {{readelf --relocs vxworks1-lib.rd} {objdump -dr vxworks1-lib.dd}
e68ed250 31 {readelf --symbols vxworks1-lib.nd} {readelf -d vxworks1-lib.td}}
b9201bb3 32 "libvxworks1.so"}
4f471f39 33 {"VxWorks executable test 1 (dynamic)" \
bab55c05 34 "tmpdir/libvxworks1.so -Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
4f471f39 35 "" {vxworks1.s}
b9201bb3
RS
36 {{readelf --relocs vxworks1.rd} {objdump -dr vxworks1.dd}}
37 "vxworks1"}
4f471f39 38 {"VxWorks executable test 2 (dynamic)" \
bab55c05 39 "-Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
4f471f39
RS
40 "" {vxworks2.s}
41 {{readelf --segments vxworks2.sd}}
42 "vxworks2"}
43 {"VxWorks executable test 2 (static)"
bab55c05 44 "-Tvxworks1.ld --hash-style=sysv" ""
4f471f39
RS
45 "" {vxworks2.s}
46 {{readelf --segments vxworks2-static.sd}}
47 "vxworks2"}
b9201bb3
RS
48 }
49 run_ld_link_tests $i386tests
4f471f39 50 run_dump_test "vxworks1-static"
b9201bb3
RS
51}
52
e39e47bd 53if [istarget "*-*-go32*"] {
897aea50 54 run_ld_link_tests {{"go32 stub" "" "" "" {zero.s} {} "go32stub"}}
e39e47bd
JK
55
56 set src "tmpdir/go32stub"
57 set dest "tmpdir/go32stub-copy"
58
59 set test "go32 stub patch the source"
60 set fi [open $src r+]
61 fconfigure $fi -translation binary
62 if {[read $fi 2] != "MZ"} {
63 fail $test
64 } else {
65 pass $test
66 seek $fi 0x40
67 puts -nonewline $fi "objcopy-test-go32stub"
68 }
69 close $fi
70
71 set test "go32 stub objcopy"
72 set status [remote_exec build $OBJCOPY "$OBJCOPYFLAGS $src $dest"]
73 set exec_output [lindex $status 1]
74 set exec_output [prune_warnings $exec_output]
75 if [string match "" $exec_output] then {
76 pass $test
77 } else {
78 send_log "$exec_output\n"
79 verbose "$exec_output" 1
80 fail $test
81 }
82
83 # cmp would compare the whole files and some data after the initial exe
84 # stub could differ.
85 set test "go32 stub comparison after objcopy"
86 set fi [open $src]
87 fconfigure $fi -translation binary
88 set src_stub [read $fi 2048]
89 close $fi
90 set fi [open $dest]
91 fconfigure $fi -translation binary
92 set dest_stub [read $fi 2048]
93 close $fi
94 if {$src_stub == $dest_stub} {
95 pass $test
96 } else {
97 fail $test
98 }
99}
100
5a68afcf 101if { !([istarget "i?86-*-elf*"]
99753d9d
AM
102 || (([istarget "i?86-*-linux*"]
103 || [istarget "i?86-*-gnu*"])
c7749bd6 104 && ![istarget "*-*-*aout*"]
67a4f2b7 105 && ![istarget "*-*-*oldld*"])
5a68afcf
RM
106 || [istarget "i?86-*-nacl*"]
107 || [istarget "x86_64-*-nacl*"]
67a4f2b7
AO
108 || [istarget "x86_64-*-linux*"]
109 || [istarget "amd64-*-linux*"]) } {
37e55690
JJ
110 return
111}
112
37e55690 113# List contains test-items with 3 items followed by 2 lists:
897aea50
MR
114# 0:name 1:ld early options 2:ld late options 3:assembler options
115# 4:filenames of assembler files 5: action and options. 6: name of output file
37e55690
JJ
116
117# Actions:
118# objdump: Apply objdump options on result. Compare with regex (last arg).
119# nm: Apply nm options on result. Compare with regex (last arg).
120# readelf: Apply readelf options on result. Compare with regex (last arg).
121
122set i386tests {
5a68afcf 123 {"Helper shared library (basic PLT test)"
897aea50 124 "-shared -melf_i386" "" "--32" {pltlib.s} {} "libpltlib.so"}
5a68afcf 125 {"basic PLT generation (non-PIC)"
897aea50 126 "-melf_i386 tmpdir/libpltlib.so" "" "--32" {plt.s}
5a68afcf
RM
127 {{objdump -drj.plt plt.pd}} "plt"}
128 {"basic PLT generation (PIC)"
897aea50 129 "-shared -melf_i386 tmpdir/libpltlib.so" "" "--32" {plt-pic.s}
5a68afcf 130 {{objdump -drj.plt plt-pic.pd}} "libplt-pic.so"}
e41b3a13 131 {"TLS -fpic -shared transitions"
bab55c05 132 "-shared -melf_i386 --no-ld-generated-unwind-info --hash-style=sysv" ""
37e55690
JJ
133 "--32" {tlspic1.s tlspic2.s}
134 {{readelf -Ssrl tlspic.rd} {objdump -drj.text tlspic.dd}
135 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
136 "libtlspic.so"}
6eaa7fb5 137 {"TLS -fpic -shared transitions without PLT"
bab55c05 138 "-shared -melf_i386 --no-ld-generated-unwind-info --hash-style=sysv" ""
6eaa7fb5
L
139 "-mrelax-relocations=yes --32"
140 {tlspic3.s tlspic2.s}
141 {{readelf -Ssrl tlspic2.rd} {objdump -drj.text tlspic2.dd}
142 {objdump -sj.got tlspic2.sd} {objdump -sj.tdata tlspic2.td}}
143 "libtlspic2.so"}
e41b3a13 144 {"TLS descriptor -fpic -shared transitions"
bab55c05 145 "-shared -melf_i386 --no-ld-generated-unwind-info --hash-style=sysv" ""
67a4f2b7
AO
146 "--32" {tlsdesc.s tlspic2.s}
147 {{readelf -Ssrl tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
148 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}}
149 "libtlsdesc.so"}
897aea50 150 {"Helper shared library" "-shared -melf_i386" ""
37e55690
JJ
151 "--32" {tlslib.s} {} "libtlslib.so"}
152 {"TLS -fpic and -fno-pic exec transitions"
bab55c05 153 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
e41b3a13 154 "--32" {tlsbinpic.s tlsbin.s}
37e55690
JJ
155 {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
156 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
157 "tlsbin"}
6eaa7fb5 158 {"TLS -fpic and -fno-pic exec transitions without PLT"
bab55c05 159 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
6eaa7fb5
L
160 "-mrelax-relocations=yes --32"
161 {tlsbinpic2.s tlsbin.s}
162 {{readelf -Ssrl tlsbin2.rd} {objdump -drj.text tlsbin2.dd}
163 {objdump -sj.got tlsbin2.sd} {objdump -sj.tdata tlsbin2.td}}
164 "tlsbin2"}
67a4f2b7 165 {"TLS descriptor -fpic and -fno-pic exec transitions"
bab55c05 166 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
e41b3a13 167 "--32" {tlsbindesc.s tlsbin.s}
67a4f2b7
AO
168 {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
169 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
170 "tlsbindesc"}
897aea50 171 {"TLS -fno-pic -shared"
bab55c05 172 "-shared -melf_i386 --no-ld-generated-unwind-info --hash-style=sysv" ""
37e55690
JJ
173 "--32" {tlsnopic1.s tlsnopic2.s}
174 {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
175 {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
67a4f2b7 176 {"TLS with global dynamic and descriptors"
bab55c05 177 "-shared -melf_i386 --no-ld-generated-unwind-info --hash-style=sysv" ""
e41b3a13 178 "--32" {tlsgdesc.s}
67a4f2b7
AO
179 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
180 "libtlsgdesc.so"}
897aea50 181 {"TLS in debug sections" "-melf_i386" ""
a45bb67d
JJ
182 "--32" {tlsg.s}
183 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
897aea50 184 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
7c445aa3 185 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
897aea50 186 {"Reloc section order" "-shared -melf_i386 -z nocombreloc" "" "--32"
4565652e 187 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
897aea50 188 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
5a68afcf 189 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
897aea50 190 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
2030e6d7 191 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
897aea50 192 {"TLS GD->LE transition" "-melf_i386" ""
a3fadc9a
L
193 "--32" {tlsgd1.s}
194 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
6eaa7fb5
L
195 {"TLS GD->LE transition without PLT" "-melf_i386" ""
196 "-mrelax-relocations=yes --32"
197 {tlsgd3.s}
198 {{objdump -dwr tlsgd3.dd}} "tlsgd3"}
897aea50 199 {"TLS LD->LE transition" "-melf_i386" ""
a3fadc9a
L
200 "--32" {tlsld1.s}
201 {{objdump -dwr tlsld1.dd}} "tlsld1"}
6eaa7fb5
L
202 {"TLS LD->LE transition without PLT" "-melf_i386" ""
203 "-mrelax-relocations=yes --32"
204 {tlsld2.s}
205 {{objdump -dwr tlsld2.dd}} "tlsld2"}
897aea50 206 {"TLS IE->LE transition" "-melf_i386" ""
dd1093aa
L
207 "--32" {tlsie1.s}
208 {{objdump -dwr tlsie1.dd}} "tlsie1"}
29a9f53e
L
209 {"PR ld/17313 (1)" "-melf_i386" ""
210 "--32" {zero.s} {} ""}
211 {"PR ld/17313 (2)" "-melf_i386 -shared --just-symbols=tmpdir/zero.o" ""
212 "--32" {lea1.s} {} "libpr17313.so"}
c8831961
L
213 {"PR ld/17306 (1)" "-melf_i386" ""
214 "--32" {pr17306b.s} {} ""}
215 {"PR ld/17306 (2)" "-melf_i386 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
216 "--32" {pr17306a.s} {} "libpr17306.so"}
f7483970
L
217 {"PR ld/17709 (1)" "-melf_i386 -shared" ""
218 "--32" {pr17709a.s} {} "libpr17709.so"}
219 {"PR ld/17709 (2)" "-melf_i386 tmpdir/libpr17709.so" ""
220 "--32" {pr17709b.s} {{readelf -r pr17709.rd}} "pr17709"}
4e0c91e4
L
221 {"Build pr19827a.o" "" ""
222 "--32" { pr19827a.S }}
223 {"Build pr19827b.so" "-melf_i386 -shared" ""
224 "--32" { pr19827b.S } {} "pr19827b.so"}
225 {"Build pr19827" "-melf_i386 -pie tmpdir/pr19827a.o tmpdir/pr19827b.so" ""
226 "--32" { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
227 {"Build pr19827.so" "-melf_i386 -shared -Bsymbolic" ""
228 "--32" { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
37e55690
JJ
229}
230
5a68afcf
RM
231# So as to avoid rewriting every last test case here in a nacl variant,
232# we use black magic to massage the generic cases into nacl-variant cases.
233if [istarget "*-*-nacl*"] {
234 # Change all the -melf_i386 to -melf_i386_nacl so linking can succeed.
235 regsub -all elf_i386 $i386tests elf_i386_nacl i386tests
236
237 # Same, applied to all the run_dump_test cases.
761e2bd4 238 set options_regsub(ld) {elf_i386 elf_i386_nacl}
5a68afcf
RM
239
240 # The section/segment layout differs too much for the vanilla
241 # readelf output files to match. So massage the cases so that
242 # they refer to a foo-nacl.rd file instead of a foo.rd file.
243 regsub -all {([a-z0-9]+)\.rd} $i386tests {\1-nacl.rd} i386tests
244
245 # Likewise for PLTs.
246 regsub -all -- {([a-z0-9]+)\.pd} $i386tests {\1-nacl.pd} i386tests
247}
248
7e0a8112
L
249proc iamcu_tests {} {
250 if {[istarget "*-*-nacl*"]} then {
251 return
252 }
253
254 global as
255 global srcdir
256 global subdir
257
258 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
259 unresolved "Build Intel MCU start.o"
260 return
261 }
262
263 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
264 unresolved "Build ia32 start.o"
265 return
266 }
267
268 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
269 unresolved "Build Intel MCU foo.o"
270 return
271 }
272
273 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
274 unresolved "Build ia32 foo.o"
275 return
276 }
277
278 run_dump_test "abs-iamcu"
279 run_dump_test "iamcu-1"
280 run_dump_test "iamcu-2"
281 run_dump_test "iamcu-3"
5197d474 282 run_dump_test "iamcu-4"
7e0a8112
L
283}
284
285iamcu_tests
286
37e55690 287run_ld_link_tests $i386tests
ac2aa337
JB
288
289run_dump_test "abs"
290run_dump_test "pcrel8"
291run_dump_test "pcrel16"
ab96bf03 292run_dump_test "pcrel16abs"
0920dee7 293run_dump_test "alloc"
9267588c 294run_dump_test "warn1"
4c544807 295run_dump_test "tlsgd2"
6eaa7fb5 296run_dump_test "tlsgd4"
dd1093aa
L
297run_dump_test "tlsie2"
298run_dump_test "tlsie3"
299run_dump_test "tlsie4"
300run_dump_test "tlsie5"
41bed6dd
L
301run_dump_test "hidden1"
302run_dump_test "hidden2"
303run_dump_test "hidden3"
304run_dump_test "protected1"
305run_dump_test "protected2"
306run_dump_test "protected3"
bdb892b9
L
307run_dump_test "protected4"
308run_dump_test "protected5"
e3c0e327 309run_dump_test "protected6a"
889c2a67 310run_dump_test "protected6b"
73784fa5 311run_dump_test "protected7"
1d85728f 312run_dump_test "tlspie1"
959b0961 313run_dump_test "tlspie2"
6eaa7fb5
L
314run_dump_test "tlspie3a"
315run_dump_test "tlspie3b"
316run_dump_test "tlspie3c"
a7b16ceb 317run_dump_test "nogot1"
0629d0af 318run_dump_test "nogot2"
56d4289c 319run_dump_test "discarded1"
2abca860 320run_dump_test "pr12718"
a81aeffc 321run_dump_test "pr12921"
2fe0fd06
L
322run_dump_test "pr12570a"
323run_dump_test "pr12570b"
80d87326
L
324run_dump_test "lea1a"
325run_dump_test "lea1b"
326run_dump_test "lea1c"
daa67607
L
327run_dump_test "lea1d"
328run_dump_test "lea1e"
329run_dump_test "lea1f"
3f65f599
L
330run_dump_test "mov1a"
331run_dump_test "mov1b"
02e2aef8
L
332run_dump_test "mov2a"
333run_dump_test "mov2b"
334run_dump_test "mov3"
02a86693
L
335run_dump_test "branch1"
336run_dump_test "call1"
337run_dump_test "call2"
caa65211
L
338run_dump_test "call3a"
339run_dump_test "call3b"
340run_dump_test "call3c"
341run_dump_test "call3d"
342run_dump_test "call3e"
343run_dump_test "call3f"
344run_dump_test "call3g"
345run_dump_test "call3h"
02a86693
L
346run_dump_test "jmp1"
347run_dump_test "jmp2"
348run_dump_test "load1"
caa65211 349run_dump_test "load1-nacl"
02a86693
L
350run_dump_test "load2"
351run_dump_test "load3"
352run_dump_test "load4a"
353run_dump_test "load4b"
354run_dump_test "load5a"
355run_dump_test "load5b"
356run_dump_test "load6"
2856a627 357run_dump_test "load7"
7b7e7f1d 358run_dump_test "pr19175"
e20365c5 359run_dump_test "pr19615"
aec6b87e
L
360run_dump_test "pr19636-1a"
361run_dump_test "pr19636-1b"
362run_dump_test "pr19636-1c"
363run_dump_test "pr19636-1d"
364run_dump_test "pr19636-1d-nacl"
365run_dump_test "pr19636-1e"
366run_dump_test "pr19636-1f"
367run_dump_test "pr19636-1g"
368run_dump_test "pr19636-1h"
369run_dump_test "pr19636-1i"
853ee16f
L
370run_dump_test "pr19636-1j"
371run_dump_test "pr19636-1k"
372run_dump_test "pr19636-1l"
aec6b87e
L
373run_dump_test "pr19636-2a"
374run_dump_test "pr19636-2b"
375run_dump_test "pr19636-2c"
376run_dump_test "pr19636-2c-nacl"
377run_dump_test "pr19636-2d"
378run_dump_test "pr19636-2d-nacl"
379run_dump_test "pr19636-2e"
bf52d7c7 380run_dump_test "pr19636-2e-nacl"
aec6b87e
L
381run_dump_test "pr19636-3a"
382run_dump_test "pr19636-3b"
383run_dump_test "pr19636-3c"
384run_dump_test "pr19636-3d"
385run_dump_test "pr19636-3e"
386run_dump_test "pr19636-3f"
387run_dump_test "pr19636-3g"
853ee16f
L
388run_dump_test "pr19636-3h"
389run_dump_test "pr19636-3i"
aec6b87e
L
390run_dump_test "pr19636-4a"
391run_dump_test "pr19636-4b"
392run_dump_test "pr19636-4c"
393run_dump_test "pr19636-4d"
b8871f35 394run_dump_test "pr19645"
bae420ef
L
395run_dump_test "pr19609-1a"
396run_dump_test "pr19609-1b"
397run_dump_test "pr19609-1c"
398run_dump_test "pr19609-1d"
399run_dump_test "pr19609-1e"
400run_dump_test "pr19609-1f"
401run_dump_test "pr19609-1g"
402run_dump_test "pr19609-1h"
403run_dump_test "pr19609-1i"
404run_dump_test "pr19609-2a"
405run_dump_test "pr19609-2b"
406run_dump_test "pr19609-2c"
407run_dump_test "undefweaka"
408run_dump_test "undefweakb"
3ab94f96 409run_dump_test "pr19539"
7d4d9709 410run_dump_test "pr20117"
74d7f0aa
L
411run_dump_test "pr20244-1a"
412run_dump_test "pr20244-1b"
413run_dump_test "pr20244-1c"
712ec279
L
414run_dump_test "pr20244-2a"
415run_dump_test "pr20244-2b"
416run_dump_test "pr20244-2c"
417run_dump_test "pr20244-2d"
a5def14f
L
418run_dump_test "pr20244-4a"
419run_dump_test "pr20244-4b"
420run_dump_test "pr20244-4c"
233cc9c1
L
421run_dump_test "pr20253-3"
422run_dump_test "pr20253-4a"
423run_dump_test "pr20253-4b"
424run_dump_test "pr20253-4c"
425run_dump_test "pr20253-5"
74437ea2 426run_dump_test "pr20515"
73caa85d 427run_dump_test "property-x86-3"
92f7d783
L
428run_dump_test "property-x86-4a"
429run_dump_test "property-x86-4b"
ee2fdd6f
L
430run_dump_test "property-x86-ibt1a"
431run_dump_test "property-x86-ibt1b"
432run_dump_test "property-x86-ibt2"
433run_dump_test "property-x86-ibt3a"
434run_dump_test "property-x86-ibt3b"
435run_dump_test "property-x86-ibt4"
436run_dump_test "property-x86-ibt5"
48580982
L
437run_dump_test "property-x86-shstk1a"
438run_dump_test "property-x86-shstk1b"
439run_dump_test "property-x86-shstk2"
440run_dump_test "property-x86-shstk3a"
441run_dump_test "property-x86-shstk3b"
442run_dump_test "property-x86-shstk4"
443run_dump_test "property-x86-shstk5"
89d249d2
L
444run_dump_test "pie1"
445run_dump_test "pie1-nacl"
9593aade 446run_dump_test "pr21884"
34c4758c 447run_dump_test "pr21884-nacl"
0a27fed7
L
448run_dump_test "pr22115-1a"
449run_dump_test "pr22115-1b"
450run_dump_test "pr22115-1c"
451run_dump_test "pr22115-1d"
5e5e02ae 452run_dump_test "pr22135"
25d17eb4
L
453
454if { !([istarget "i?86-*-linux*"]
5940a93c 455 || [istarget "i?86-*-gnu*"]
5a68afcf
RM
456 || [istarget "i?86-*-nacl*"]
457 || [istarget "x86_64-*-nacl*"]
25d17eb4
L
458 || [istarget "x86_64-*-linux*"]) } {
459 return
460}
461
462run_dump_test "compressed1"
a3293649 463run_dump_test "pr12627"
98920172 464run_dump_test "pr13302"
17d6eea5 465run_dump_test "pr14215"
998d811a 466run_dump_test "pr17057"
1952c5cd
L
467run_dump_test "pr17935-1"
468run_dump_test "pr17935-2"
8efa2874 469run_dump_test "pr18801"
13a2df29 470run_dump_test "pr18815"
2df3368d
L
471run_dump_test "pr19939a"
472run_dump_test "pr19939b"
97d343d4 473run_dump_test "tlsdesc2"
4a7a7923 474
aec6b87e
L
475proc undefined_weak {cflags ldflags} {
476 set testname "Undefined weak symbol"
477 if { ![ string match "" $cflags$ldflags] } {
478 set testname "$testname ($cflags $ldflags)"
479 }
480
074f6066
L
481 if { [string match "*-fPIE*" $cflags]
482 && ![string match "*-z nodynamic-undefined-weak*" $ldflags] } {
aec6b87e
L
483 set weak_symbol "Weak defined"
484 } else {
485 set weak_symbol "Weak undefined"
486 }
487
488 run_cc_link_tests [list \
489 [list \
490 "Build libpr19704a.so" \
491 "-shared -Wl,-soname,libpr19704.so" \
492 "" \
493 { dummy.s } \
494 {} \
495 "libpr19704a.so" \
496 ] \
497 [list \
498 "Build libpr19704b.so" \
499 "-shared -Wl,-soname,libpr19704.so" \
500 "-fPIC" \
501 { pr19704b.c } \
502 {} \
503 "libpr19704b.so" \
504 ] \
505 ]
506
507 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
508
982c6f26 509 run_ld_link_exec_tests [list \
aec6b87e
L
510 [list \
511 "Run pr19704" \
e9237227 512 "$ldflags tmpdir/libpr19704.so -Wl,-R,tmpdir" \
aec6b87e
L
513 "" \
514 { pr19704a.c } \
515 "pr19704" \
516 "pr19704.out" \
517 "$cflags" \
518 ] \
519 ]
520
521 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
522
523 set exec_output [run_host_cmd tmpdir/pr19704 ""]
524 if {![string match $weak_symbol $exec_output]} {
525 fail $testname
526 } else {
527 pass $testname
528 }
529}
530
ea9fb8b3
L
531# Add $PLT_CFLAGS if PLT is expected.
532global PLT_CFLAGS
533
4a7a7923
L
534# Must be Linux native with the C compiler
535if { [isnative]
536 && [istarget "i?86-*-linux*"]
537 && [which $CC] != 0 } {
538 run_cc_link_tests [list \
539 [list \
540 "Build plt-lib.so" \
541 "-shared" \
542 "-fPIC" \
543 { plt-lib.c } \
544 {} \
545 "libplt-lib.so" \
546 ] \
547 [list \
548 "Build libplt-main1.a" \
549 "" \
0cb4071e 550 "-fPIC -Wa,-mrelax-relocations=yes" \
4a7a7923
L
551 { plt-main1.c } \
552 {{readelf {-Wr} plt-main1.rd}} \
553 "libplt-main1.a" \
554 ] \
555 [list \
556 "Build libplt-main2.a" \
557 "" \
0cb4071e 558 "-fPIC -Wa,-mrelax-relocations=yes" \
4a7a7923
L
559 { plt-main2.c } \
560 {{readelf {-Wr} plt-main2.rd}} \
561 "libplt-main2.a" \
562 ] \
563 [list \
564 "Build libplt-main3.a" \
565 "" \
0cb4071e 566 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
4a7a7923
L
567 { plt-main3.c } \
568 {{readelf {-Wr} plt-main3.rd}} \
569 "libplt-main3.a" \
570 ] \
571 [list \
572 "Build libplt-main4.a" \
573 "" \
0cb4071e 574 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
4a7a7923
L
575 { plt-main4.c } \
576 {{readelf {-Wr} plt-main4.rd}} \
577 "libplt-main4.a" \
578 ] \
dd7e64d4
L
579 [list \
580 "Build plt-main" \
581 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
582 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
583 "" \
584 { plt-main5.c } \
585 {{readelf {-Wr} plt-main.rd}} \
586 "plt-main" \
587 ] \
588 [list \
589 "Build plt-main with PIE" \
590 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
591 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
592 "-fPIC" \
593 { plt-main5.c } \
594 {{readelf {-Wr} plt-main.rd}} \
595 "plt-main" \
596 ] \
d5597ebc
L
597 [list \
598 "Build copyreloc-lib.so" \
599 "-shared" \
600 "-fPIC" \
601 { copyreloc-lib.c } \
602 {} \
603 "copyreloc-lib.so" \
604 ] \
605 [list \
46175b4e
L
606 "Build libcopyreloc-main.a" \
607 "" \
d5597ebc
L
608 "" \
609 { copyreloc-main.S } \
46175b4e
L
610 {} \
611 "libcopyreloc-main.a" \
612 ] \
613 [list \
614 "Build copyreloc-main with PIE and GOTOFF (1)" \
615 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
616 "" \
617 { dummy.s } \
d5597ebc
L
618 {{readelf {-Wr} copyreloc-main1.rd}} \
619 "copyreloc-main" \
620 ] \
621 [list \
622 "Build copyreloc-main with PIE and GOTOFF (2)" \
46175b4e 623 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
d5597ebc 624 "" \
46175b4e 625 { dummy.s } \
d5597ebc
L
626 {{readelf {-Wr} copyreloc-main2.rd}} \
627 "copyreloc-main" \
628 ] \
629 [list \
630 "Build pr17689.so" \
631 "-shared" \
632 "-fPIC" \
633 { pr17689a.c } \
634 {} \
635 "pr17689.so" \
636 ] \
25070364
L
637 [list \
638 "Build pr17689.so with -z now" \
639 "-shared -Wl,-z,now" \
640 "-fPIC" \
641 { pr17689a.c } \
642 {{readelf {-Wr} pr17689now.rd}} \
643 "pr17689now.so" \
644 ] \
d5597ebc
L
645 [list \
646 "Build pr17689ver.so" \
647 "-shared -Wl,--version-script,pr17689a.t" \
648 "-fPIC" \
649 { pr17689a.c } \
650 {} \
651 "pr17689ver.so" \
652 ] \
653 [list \
654 "Build pr17689.a" \
655 "" \
656 "" \
657 { pr17689b.S } \
658 {} \
659 "pr17689.a" \
660 ] \
661 [list \
662 "Build pr17689 with PIE and GOTOFF" \
663 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
664 "" \
665 { dummy.c } \
666 {{readelf {-Wr} pr17689.rd}} \
667 "pr17689" \
668 ] \
25070364
L
669 [list \
670 "Build pr17689 with PIE, -z now and GOTOFF" \
671 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
672 "" \
673 { dummy.c } \
674 {{readelf {-Wr} pr17689now.rd}} \
675 "pr17689now" \
676 ] \
d5597ebc
L
677 [list \
678 "Build pr17689ver with PIE and GOTOFF" \
679 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
680 "" \
681 { dummy.c } \
682 {{readelf {-Wr} pr17689ver.rd}} \
683 "pr17689ver" \
684 ] \
685 [list \
686 "Build pr17827 with PIE and GOTOFF" \
687 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
688 "" \
689 { dummy.c } \
690 {{readelf {-Wr} pr17827.rd}} \
691 "pr17827" \
692 ] \
04ebc307
L
693 [list \
694 "Build pr18900.so" \
695 "-shared" \
696 "-fPIC" \
697 { pr18900a.c } \
698 "" \
699 "pr18900.so" \
700 ] \
701 [list \
23a4bd22
L
702 "Build pr18900.o" \
703 "-r -nostdlib" \
04ebc307
L
704 "" \
705 { pr18900b.c pr18900c.c } \
23a4bd22
L
706 "" \
707 "pr18900.o" \
708 ] \
709 [list \
710 "Build pr18900a" \
711 "tmpdir/pr18900.o tmpdir/pr18900.so" \
712 "" \
713 { dummy.s } \
04ebc307
L
714 {{readelf {-Wrd} pr18900a.rd}} \
715 "pr18900a" \
716 ] \
717 [list \
718 "Build pr18900b" \
23a4bd22 719 "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
04ebc307 720 "" \
23a4bd22 721 { dummy.s } \
04ebc307
L
722 {{readelf {-Wrd} pr18900b.rd}} \
723 "pr18900b" \
724 ] \
4b627c18
L
725 [list \
726 "Build pr19031.so" \
727 "-shared" \
728 "-fPIC" \
729 { pr19031a.c } \
730 "" \
731 "pr19031.so" \
732 ] \
02a86693
L
733 [list \
734 "Build got1d.so" \
735 "-shared" \
736 "" \
737 { got1d.S } \
738 "" \
739 "got1d.so" \
740 ] \
23a4bd22
L
741 [list \
742 "Build gotpc1.o" \
743 "-r -nostdlib" \
b1058ce9 744 "-Wa,-mrelax-relocations=yes" \
23a4bd22
L
745 { got1a.S got1b.c got1c.c } \
746 "" \
747 "gotpc1.o" \
748 ] \
02a86693
L
749 [list \
750 "Build gotpc1" \
9d1c54ed 751 "$NOPIE_LDFLAGS -Wl,--as-needed tmpdir/gotpc1.o tmpdir/got1d.so" \
b1058ce9 752 "" \
23a4bd22 753 { dummy.s } \
02a86693
L
754 {{objdump {-dw} got1.dd}} \
755 "got1" \
756 ] \
ead3d542
L
757 [list \
758 "Build pr19319.so" \
759 "-shared" \
760 "" \
761 { pr19319a.S } \
762 "" \
763 "pr19319.so" \
764 ] \
765 [list \
766 "Build pr19319" \
767 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
b1058ce9 768 "-Wa,-mrelax-relocations=yes" \
ead3d542
L
769 { pr19319b.S } \
770 {{objdump {-dw} pr19319.dd}} \
771 "pr19319" \
772 ] \
46bed679
L
773 [list \
774 "Build property 1" \
775 "" \
776 "" \
777 {pass.c property-no-copy.S} \
778 {{readelf {-n} property-1.r}} \
779 "property-1" \
780 ] \
781 [list \
782 "Build property 1 (.o)" \
783 "-r -nostdlib" \
784 "" \
785 {pass.c property-no-copy.S} \
786 {{readelf {-n} property-1.r}} \
787 "property-1.o" \
788 ] \
789 [list \
790 "Build property 1 (.so)" \
791 "-shared" \
792 "-fPIC" \
793 {pass.c property-no-copy.S} \
794 {{readelf {-n} property-1.r}} \
795 "property-1.so" \
796 ] \
797 [list \
798 "Build property 2" \
799 "" \
800 "" \
801 {pass.c property-stack.S} \
802 {{readelf {-n} property-2.r}} \
803 "property-2" \
804 ] \
805 [list \
806 "Build property 2 (.o)" \
807 "-r -nostdlib" \
808 "" \
809 {pass.c property-stack.S} \
810 {{readelf {-n} property-2.r}} \
811 "property-2.o" \
812 ] \
813 [list \
814 "Build property 2 (.so)" \
815 "-shared" \
816 "-fPIC" \
817 {pass.c property-stack.S} \
818 {{readelf {-n} property-2.r}} \
819 "property-2.so" \
820 ] \
821 [list \
822 "Build property 3" \
823 "" \
824 "" \
825 {pass.c property-stack.S property-x86-1.S} \
826 {{readelf {-n} property-3.r}} \
827 "property-3" \
828 ] \
829 [list \
830 "Build property 3 (.o)" \
831 "-r -nostdlib" \
832 "" \
833 {pass.c property-x86-1.S property-stack.S} \
834 {{readelf {-n} property-3.r}} \
835 "property-3.o" \
836 ] \
837 [list \
838 "Build property 3 (.so)" \
839 "-shared" \
840 "-fPIC" \
841 {property-x86-1.S pass.c property-stack.S} \
842 {{readelf {-n} property-3.r}} \
843 "property-3.so" \
844 ] \
845 [list \
846 "Build property 4" \
847 "" \
848 "" \
849 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
850 {{readelf {-n} property-4.r}} \
851 "property-4" \
852 ] \
853 [list \
854 "Build property 4 (.o)" \
855 "-r -nostdlib" \
856 "" \
857 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
858 {{readelf {-n} property-4.r}} \
859 "property-4.o" \
860 ] \
861 [list \
862 "Build property 4 (.so)" \
863 "-shared" \
864 "-fPIC" \
865 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
866 {{readelf {-n} property-4.r}} \
867 "property-4.so" \
868 ] \
869 [list \
870 "Build property 4 (-Wl,-z,stack-size=0)" \
871 "-Wl,-z,stack-size=0" \
872 "" \
873 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
874 {{readelf {-n} property-4.r}} \
875 "property-4" \
876 ] \
877 [list \
878 "Build property 5" \
879 "-Wl,-z,stack-size=0x900000" \
880 "" \
881 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
882 {{readelf {-n} property-5.r}} \
883 "property-5" \
884 ] \
885 [list \
886 "Build property 5 (.o)" \
887 "-r -nostdlib -Wl,-z,stack-size=0x900000" \
888 "" \
889 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
890 {{readelf {-n} property-5.r}} \
891 "property-5.o" \
892 ] \
893 [list \
894 "Build property 5 (.so)" \
895 "-shared -Wl,-z,stack-size=0x900000" \
896 "-fPIC" \
897 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
898 {{readelf {-n} property-5.r}} \
899 "property-5.so" \
900 ] \
901 [list \
902 "Build property-6.so" \
903 "-shared" \
904 "-fPIC" \
905 {property-6a.c property-6c.S} \
906 {{readelf {-n} property-6.r}} \
907 "property-6.so" \
908 ] \
909 [list \
910 "Build property-6.o" \
911 "-r -nostdlib" \
912 "" \
913 {property-6b.c property-stack.S} \
914 {{readelf {-n} property-2.r}} \
915 "property-6.o" \
916 ] \
917 [list \
918 "Build property-6" \
919 "-Wl,--as-needed tmpdir/property-6.o tmpdir/property-6.so" \
920 { dummy.s } \
921 "" \
922 {{readelf {-n} property-2.r}} \
923 "property-6" \
924 ] \
925 [list \
926 "Build property 7a (.o)" \
927 "-r -nostdlib" \
928 "" \
929 {property-unsorted-1.S} \
930 {{readelf {-n} property-7.r}} \
931 "property-7a.o" \
932 ] \
933 [list \
934 "Build property 7b (.o)" \
935 "-r -nostdlib" \
936 "" \
937 {property-unsorted-2.S} \
938 {{readelf {-n} property-7.r}} \
939 "property-7b.o" \
940 ] \
4a7a7923
L
941 ]
942
982c6f26 943 run_ld_link_exec_tests [list \
4a7a7923
L
944 [list \
945 "Run plt-main" \
946 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
947 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
948 "" \
949 { plt-main5.c } \
950 "plt-main" \
951 "plt-main.out" \
952 ] \
953 [list \
954 "Run plt-main with PIE" \
955 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
956 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
957 "" \
958 { plt-main5.c } \
959 "plt-main-pie" \
960 "plt-main.out" \
961 "-fPIC" \
962 ] \
d5597ebc
L
963 [list \
964 "Run copyreloc-main with PIE and GOTOFF" \
e9237227 965 "-Wl,--as-needed tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
d5597ebc 966 "" \
46175b4e 967 { dummy.s } \
d5597ebc
L
968 "copyreloc-main" \
969 "copyreloc-main.out" \
970 ] \
971 [list \
972 "Run pr17689 with PIE and GOTOFF" \
973 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
974 "" \
975 { dummy.c } \
976 "pr17689" \
977 "pr17689.out" \
978 ] \
25070364
L
979 [list \
980 "Run pr17689 with PIE, -z now and GOTOFF" \
981 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
982 "" \
983 { dummy.c } \
984 "pr17689now" \
985 "pr17689.out" \
986 ] \
d5597ebc
L
987 [list \
988 "Run pr17689ver with PIE and GOTOFF" \
989 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
990 "" \
991 { dummy.c } \
992 "pr17689ver" \
993 "pr17689.out" \
994 ] \
04ebc307
L
995 [list \
996 "Run pr18900" \
23a4bd22 997 "tmpdir/pr18900.o tmpdir/pr18900.so" \
04ebc307 998 "" \
23a4bd22 999 { dummy.s } \
04ebc307
L
1000 "pr18900" \
1001 "pr18900.out" \
1002 ] \
4b627c18
L
1003 [list \
1004 "Run pr19031" \
329b5ba1 1005 "$NOPIE_LDFLAGS tmpdir/pr19031.so" \
4b627c18
L
1006 "" \
1007 { pr19031b.S pr19031c.c } \
1008 "pr19031" \
1009 "pr19031.out" \
329b5ba1 1010 "$NOPIE_CFLAGS" \
4b627c18 1011 ] \
02a86693
L
1012 [list \
1013 "Run got1" \
9d1c54ed 1014 "$NOPIE_LDFLAGS tmpdir/got1d.so" \
02a86693
L
1015 "" \
1016 { got1a.S got1b.c got1c.c } \
1017 "got1" \
1018 "got1.out" \
1019 ] \
46bed679
L
1020 [list \
1021 "Run property 1" \
1022 "" \
1023 "" \
1024 {pass.c property-no-copy.S} \
1025 "property-1" "pass.out" \
1026 ] \
1027 [list \
1028 "Run property 1 (PIE)" \
1029 "-pie" \
1030 "" \
1031 {pass.c property-no-copy.S} \
1032 "property-1-pie" "pass.out" "-fPIE" \
1033 ] \
1034 [list \
1035 "Run property 1 (static)" \
1036 "-static" \
1037 "" \
1038 {pass.c property-no-copy.S} \
1039 "property-1-static" "pass.out" \
1040 ] \
1041 [list \
1042 "Run property 2" \
1043 "" \
1044 "" \
1045 {pass.c property-stack.S} \
1046 "property-2" "pass.out" \
1047 ] \
1048 [list \
1049 "Run property 2 (PIE)" \
1050 "-pie" \
1051 "" \
1052 {pass.c property-stack.S} \
1053 "property-2-pie" "pass.out" "-fPIE" \
1054 ] \
1055 [list \
1056 "Run property 2 (static)" \
1057 "-static" \
1058 "" \
1059 {pass.c property-stack.S} \
1060 "property-3-static" "pass.out" \
1061 ] \
1062 [list \
1063 "Run property 3" \
1064 "" \
1065 "" \
1066 {pass.c property-stack.S property-x86-1.S} \
1067 "property-3" "pass.out" \
1068 ] \
1069 [list \
1070 "Run property 3 (PIE)" \
1071 "-pie" \
1072 "" \
1073 {pass.c property-x86-1.S property-stack.S} \
1074 "property-3-pie" "pass.out" "-fPIE" \
1075 ] \
1076 [list \
1077 "Run property 3 (static)" \
1078 "-static" \
1079 "" \
1080 {property-x86-1.S pass.c property-stack.S} \
1081 "property-3-static" "pass.out" \
1082 ] \
1083 [list \
1084 "Run property 4" \
1085 "" \
1086 "" \
1087 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1088 "property-4" "pass.out" \
1089 ] \
1090 [list \
1091 "Run property 4 (PIE)" \
1092 "-pie" \
1093 "" \
1094 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1095 "property-4-pie" "pass.out" "-fPIE" \
1096 ] \
1097 [list \
1098 "Run property 4 (static)" \
1099 "-static" \
1100 "" \
1101 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1102 "property-4-static" "pass.out" \
1103 ] \
1104 [list \
1105 "Run property 5" \
1106 "-Wl,-z,stack-size=0x900000" \
1107 "" \
1108 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1109 "property-5" "pass.out" \
1110 ] \
1111 [list \
1112 "Run property 5 (PIE)" \
1113 "-pie -Wl,-z,stack-size=0x900000" \
1114 "" \
1115 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1116 "property-5-pie" "pass.out" "-fPIE" \
1117 ] \
1118 [list \
1119 "Run property 5 (static)" \
1120 "-static -Wl,-z,stack-size=0x900000" \
1121 "" \
1122 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1123 "property-5-static" "pass.out" \
1124 ] \
4a7a7923 1125 ]
aec6b87e 1126
9d1c54ed
L
1127 undefined_weak "$NOPIE_CFLAGS" "$NOPIE_LDFLAGS"
1128 undefined_weak "-fPIE" "$NOPIE_LDFLAGS"
aec6b87e 1129 undefined_weak "-fPIE" "-pie"
9d1c54ed 1130 undefined_weak "-fPIE" "-z nodynamic-undefined-weak $NOPIE_LDFLAGS"
aec6b87e 1131 undefined_weak "-fPIE" "-pie -z nodynamic-undefined-weak"
4a7a7923 1132}
a3747075 1133
9d1c54ed 1134global NOPIE_CFLAGS NOPIE_LDFLAGS
ee2fdd6f 1135
ca8c86ef
L
1136# Must be native with the C compiler and working IFUNC support,
1137if { [isnative]
1138 && [check_ifunc_available]
1139 && [istarget "i?86-*-*"]
1140 && [which $CC] != 0 } {
1141 run_cc_link_tests [list \
1142 [list \
1143 "Build ifunc-1a.o ifunc-1b.o ifunc-1c.o ifunc-1d.o" \
1144 "" \
1145 "-fPIC -O2 -g" \
1146 { ifunc-1a.c ifunc-1b.S ifunc-1c.S ifunc-1d.S } \
1147 ] \
2a568401
L
1148 [list \
1149 "Build pr21168a.o" \
1150 "" \
1151 "" \
1152 { pr21168a.c } \
1153 ] \
1154 [list \
1155 "Build pr21168.so" \
1156 "-shared" \
1157 "" \
1158 { pr21168b.S } \
1159 "" \
1160 "pr21168.so" \
1161 ] \
ca8c86ef
L
1162 ]
1163
982c6f26 1164 run_ld_link_exec_tests [list \
ca8c86ef
L
1165 [list \
1166 "Run ifunc-1a" \
1167 "tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1168 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1169 "" \
1170 { dummy.c } \
1171 "ifunc-1a" \
1172 "pass.out" \
1173 ] \
1174 [list \
1175 "Run ifunc-1b" \
1176 "--static tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1177 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1178 "" \
1179 { dummy.c } \
1180 "ifunc-1b" \
1181 "pass.out" \
1182 ] \
2a568401
L
1183 [list \
1184 "Run pr21168" \
1185 "tmpdir/pr21168a.o tmpdir/pr21168.so" \
1186 "" \
1187 { dummy.c } \
1188 "pr21168" \
1189 "pass.out" \
1190 ] \
ca8c86ef 1191 ]
ee2fdd6f
L
1192
1193 if { [istarget "i?86-*-linux*"] } {
1194 run_cc_link_tests [list \
1195 [list \
1196 "Build pr21168.so with -z ibtplt" \
1197 "-shared -Wl,-z,ibtplt" \
1198 "" \
1199 { pr21168b.S } \
1200 "" \
1201 "pr21168-ibt.so" \
1202 ] \
1203 [list \
1204 "Build ifunc-1a with -z ibtplt" \
1205 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1206 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1207 "" \
1208 { dummy.c } \
1209 {{objdump {-dw} plt-main-ibt.dd}} \
1210 "ifunc-1a-ibt" \
1211 ] \
1212 [list \
1213 "Build ifunc-1a with PIE -z ibtplt" \
1214 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1215 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1216 "" \
1217 { dummy.c } \
1218 {{objdump {-dw} plt-pie-ibt.dd}} \
1219 "ifunc-1a-pie-ibt" \
1220 ] \
1221 ]
1222
1223 run_ld_link_exec_tests [list \
1224 [list \
1225 "Run ifunc-1a with -z ibtplt" \
1226 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1227 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1228 "" \
1229 { dummy.c } \
1230 "ifunc-1a-ibt" \
1231 "pass.out" \
1232 ] \
1233 [list \
1234 "Run ifunc-1a with PIE -z ibtplt" \
1235 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1236 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1237 "" \
1238 { dummy.c } \
1239 "ifunc-1a-pie-ibt" \
1240 "pass.out" \
1241 ] \
1242 [list \
1243 "Run pr21168 with -z ibtplt" \
1244 "tmpdir/pr21168a.o tmpdir/pr21168-ibt.so" \
1245 "" \
1246 { dummy.c } \
1247 "pr21168-ibt" \
1248 "pass.out" \
1249 ] \
1250 ]
1251 }
ca8c86ef
L
1252}
1253
00564418
L
1254# Must be native with the C compiler.
1255if { [isnative]
1256 && [istarget "i?86-*-*"]
1257 && [which $CC] != 0 } {
7073b5b9
L
1258 run_cc_link_tests [list \
1259 [list \
1260 "Build pr22001-1.so" \
1261 "-shared" \
1262 "" \
1263 { pr22001-1a.c } \
1264 {} \
1265 "pr22001-1.so" \
1266 ] \
a5b4ee94
L
1267 [list \
1268 "Build pr21997-1.so" \
1269 "-shared" \
1270 "" \
1271 { property-stack.S property-no-copy.S pr21997-1a.S } \
1272 {} \
1273 "pr21997-1.so" \
1274 ] \
7073b5b9
L
1275 ]
1276
00564418
L
1277 run_ld_link_exec_tests [list \
1278 [list \
1279 "Run weakundef1 without PIE" \
1280 "$NOPIE_LDFLAGS" \
1281 "" \
1282 { weakundef1.c } \
1283 "weakundef1pie" \
1284 "pass.out" \
1285 "$NOPIE_CFLAGS" \
1286 ] \
7073b5b9
L
1287 [list \
1288 "Run pr22001-1" \
1289 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1290 "" \
1291 { pr22001-1b.c } \
1292 "pr22001-1" \
1293 "pass.out" \
1294 "$NOPIE_CFLAGS" \
1295 ] \
1296 [list \
1297 "Run pr22001-1 (PIE 1)" \
1298 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1299 "" \
1300 { pr22001-1c.S } \
1301 "pr22001-1-pie-1" \
1302 "pass.out" \
1303 ] \
1304 [list \
1305 "Run pr22001-1 (PIE 2)" \
1306 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1307 "" \
1308 { pr22001-1c.S } \
1309 "pr22001-1-pie-2" \
1310 "pass.out" \
1311 ] \
1312 [list \
1313 "Run pr22001-1 (PIC 1)" \
1314 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1315 "" \
1316 { pr22001-1b.c } \
1317 "pr22001-1-pic-1" \
1318 "pass.out" \
1319 "-fPIC" \
1320 ] \
1321 [list \
1322 "Run pr22001-1 (PIC 2)" \
1323 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1324 "" \
1325 { pr22001-1b.c } \
1326 "pr22001-1-pic-2" \
1327 "pass.out" \
1328 "-fPIC" \
1329 ] \
a5b4ee94
L
1330 [list \
1331 "Run pr21997-1" \
1332 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1333 "" \
1334 { pr21997-1b.c } \
1335 "pr21997-1" \
1336 "pass.out" \
1337 "$NOPIE_CFLAGS" \
1338 ] \
1339 [list \
1340 "Run pr21997-1 (PIC 1)" \
1341 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1342 "" \
1343 { pr21997-1b.c } \
1344 "pr21997-1-pic-1" \
1345 "pass.out" \
1346 "-fPIC" \
1347 ] \
1348 [list \
1349 "Run pr21997-1 (PIC 2)" \
1350 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1351 "" \
1352 { pr21997-1b.c } \
1353 "pr21997-1-pic-2" \
1354 "pass.out" \
1355 "-fPIC" \
1356 ] \
1357 [list \
1358 "Run pr21997-1 (PIE 1)" \
1359 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1360 "" \
1361 { pr21997-1c.S } \
1362 "pr21997-1-pie-1" \
1363 "pass.out" \
1364 ] \
1365 [list \
1366 "Run pr21997-1 (PIE 2)" \
1367 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1368 "" \
1369 { pr21997-1c.S } \
1370 "pr21997-1-pie-2" \
1371 "pass.out" \
1372 ] \
00564418 1373 ]
7073b5b9 1374
25d28c91
L
1375 if { [at_least_gcc_version 5 0] } {
1376 run_ld_link_exec_tests [list \
1377 [list \
1378 "Run weakundef1 with PIE" \
1379 "-pie" \
1380 "" \
1381 { weakundef1.c } \
1382 "weakundef1pie" \
1383 "pass.out" \
1384 "-fPIE" \
1385 ] \
1386 ]
1387 }
00564418
L
1388}
1389
a3747075
L
1390if { !([istarget "i?86-*-linux*"]
1391 || [istarget "x86_64-*-linux*"]) } {
1392 return
1393}
1394
f604c2a2
L
1395run_ld_link_tests [list \
1396 [list \
1397 "basic PLT generation (non-PIC, -z now)" \
bab55c05 1398 "-z now -melf_i386 --hash-style=sysv tmpdir/libpltlib.so" \
f604c2a2
L
1399 "" \
1400 "--32" \
1401 {plt2.s} \
1402 {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1403 "plt2" \
1404 ] \
1405 [list \
1406 "basic PLT generation (PIC, -z now)" \
1407 "-z now -shared -melf_i386 tmpdir/libpltlib.so" \
1408 "" \
1409 "--32" \
1410 {plt-pic.s} \
1411 {{objdump -dwr plt-pic2.dd}} \
1412 "plt-pic2.so" \
1413 ] \
abfa390d
L
1414 [list \
1415 "Build pr21626.so" \
1416 "-shared -melf_i386" \
1417 "" \
1418 "--32" \
1419 {property-x86-3.s} \
1420 "" \
1421 "pr21626.so" \
1422 ] \
1423 [list \
1424 "Build pr21626" \
1425 "-melf_i386 tmpdir/pr21626.so" \
1426 "" \
1427 "--32" \
1428 {start.s foo.s} \
1429 "" \
1430 "pr21626" \
1431 ] \
f604c2a2
L
1432]
1433
a3747075
L
1434# Linux only tests
1435run_dump_test "pltgot-1"
7c1e8d3e 1436run_dump_test "pltgot-2"
fff53dae 1437run_dump_test "pr20830"
ee2fdd6f
L
1438run_dump_test "ibt-plt-1"
1439run_dump_test "ibt-plt-2a"
1440run_dump_test "ibt-plt-2b"
1441run_dump_test "ibt-plt-2c"
1442run_dump_test "ibt-plt-2d"
1443run_dump_test "ibt-plt-3a"
1444run_dump_test "ibt-plt-3b"
1445run_dump_test "ibt-plt-3c"
1446run_dump_test "ibt-plt-3d"
This page took 0.709568 seconds and 4 git commands to generate.