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