Properly handle dynamic reloc against normal symbol
[deliverable/binutils-gdb.git] / ld / testsuite / ld-i386 / i386.exp
CommitLineData
37e55690 1# Expect script for ld-i386 tests
6f2750fe 2# Copyright (C) 2002-2016 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"}
e41b3a13 136 {"TLS descriptor -fpic -shared transitions"
897aea50 137 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
67a4f2b7
AO
138 "--32" {tlsdesc.s tlspic2.s}
139 {{readelf -Ssrl tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
140 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}}
141 "libtlsdesc.so"}
897aea50 142 {"Helper shared library" "-shared -melf_i386" ""
37e55690
JJ
143 "--32" {tlslib.s} {} "libtlslib.so"}
144 {"TLS -fpic and -fno-pic exec transitions"
897aea50 145 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
e41b3a13 146 "--32" {tlsbinpic.s tlsbin.s}
37e55690
JJ
147 {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
148 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
149 "tlsbin"}
67a4f2b7 150 {"TLS descriptor -fpic and -fno-pic exec transitions"
897aea50 151 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
e41b3a13 152 "--32" {tlsbindesc.s tlsbin.s}
67a4f2b7
AO
153 {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
154 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
155 "tlsbindesc"}
897aea50
MR
156 {"TLS -fno-pic -shared"
157 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
37e55690
JJ
158 "--32" {tlsnopic1.s tlsnopic2.s}
159 {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
160 {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
67a4f2b7 161 {"TLS with global dynamic and descriptors"
897aea50 162 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
e41b3a13 163 "--32" {tlsgdesc.s}
67a4f2b7
AO
164 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
165 "libtlsgdesc.so"}
897aea50 166 {"TLS in debug sections" "-melf_i386" ""
a45bb67d
JJ
167 "--32" {tlsg.s}
168 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
897aea50 169 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
7c445aa3 170 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
897aea50 171 {"Reloc section order" "-shared -melf_i386 -z nocombreloc" "" "--32"
4565652e 172 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
897aea50 173 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
5a68afcf 174 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
897aea50 175 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
2030e6d7 176 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
897aea50 177 {"TLS GD->LE transition" "-melf_i386" ""
a3fadc9a
L
178 "--32" {tlsgd1.s}
179 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
897aea50 180 {"TLS LD->LE transition" "-melf_i386" ""
a3fadc9a
L
181 "--32" {tlsld1.s}
182 {{objdump -dwr tlsld1.dd}} "tlsld1"}
897aea50 183 {"TLS IE->LE transition" "-melf_i386" ""
dd1093aa
L
184 "--32" {tlsie1.s}
185 {{objdump -dwr tlsie1.dd}} "tlsie1"}
29a9f53e
L
186 {"PR ld/17313 (1)" "-melf_i386" ""
187 "--32" {zero.s} {} ""}
188 {"PR ld/17313 (2)" "-melf_i386 -shared --just-symbols=tmpdir/zero.o" ""
189 "--32" {lea1.s} {} "libpr17313.so"}
c8831961
L
190 {"PR ld/17306 (1)" "-melf_i386" ""
191 "--32" {pr17306b.s} {} ""}
192 {"PR ld/17306 (2)" "-melf_i386 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
193 "--32" {pr17306a.s} {} "libpr17306.so"}
f7483970
L
194 {"PR ld/17709 (1)" "-melf_i386 -shared" ""
195 "--32" {pr17709a.s} {} "libpr17709.so"}
196 {"PR ld/17709 (2)" "-melf_i386 tmpdir/libpr17709.so" ""
197 "--32" {pr17709b.s} {{readelf -r pr17709.rd}} "pr17709"}
4e0c91e4
L
198 {"Build pr19827a.o" "" ""
199 "--32" { pr19827a.S }}
200 {"Build pr19827b.so" "-melf_i386 -shared" ""
201 "--32" { pr19827b.S } {} "pr19827b.so"}
202 {"Build pr19827" "-melf_i386 -pie tmpdir/pr19827a.o tmpdir/pr19827b.so" ""
203 "--32" { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
204 {"Build pr19827.so" "-melf_i386 -shared -Bsymbolic" ""
205 "--32" { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
37e55690
JJ
206}
207
5a68afcf
RM
208# So as to avoid rewriting every last test case here in a nacl variant,
209# we use black magic to massage the generic cases into nacl-variant cases.
210if [istarget "*-*-nacl*"] {
211 # Change all the -melf_i386 to -melf_i386_nacl so linking can succeed.
212 regsub -all elf_i386 $i386tests elf_i386_nacl i386tests
213
214 # Same, applied to all the run_dump_test cases.
761e2bd4 215 set options_regsub(ld) {elf_i386 elf_i386_nacl}
5a68afcf
RM
216
217 # The section/segment layout differs too much for the vanilla
218 # readelf output files to match. So massage the cases so that
219 # they refer to a foo-nacl.rd file instead of a foo.rd file.
220 regsub -all {([a-z0-9]+)\.rd} $i386tests {\1-nacl.rd} i386tests
221
222 # Likewise for PLTs.
223 regsub -all -- {([a-z0-9]+)\.pd} $i386tests {\1-nacl.pd} i386tests
224}
225
7e0a8112
L
226proc iamcu_tests {} {
227 if {[istarget "*-*-nacl*"]} then {
228 return
229 }
230
231 global as
232 global srcdir
233 global subdir
234
235 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
236 unresolved "Build Intel MCU start.o"
237 return
238 }
239
240 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
241 unresolved "Build ia32 start.o"
242 return
243 }
244
245 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
246 unresolved "Build Intel MCU foo.o"
247 return
248 }
249
250 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
251 unresolved "Build ia32 foo.o"
252 return
253 }
254
255 run_dump_test "abs-iamcu"
256 run_dump_test "iamcu-1"
257 run_dump_test "iamcu-2"
258 run_dump_test "iamcu-3"
5197d474 259 run_dump_test "iamcu-4"
7e0a8112
L
260}
261
262iamcu_tests
263
37e55690 264run_ld_link_tests $i386tests
ac2aa337
JB
265
266run_dump_test "abs"
267run_dump_test "pcrel8"
268run_dump_test "pcrel16"
ab96bf03 269run_dump_test "pcrel16abs"
0920dee7 270run_dump_test "alloc"
9267588c 271run_dump_test "warn1"
4c544807 272run_dump_test "tlsgd2"
dd1093aa
L
273run_dump_test "tlsie2"
274run_dump_test "tlsie3"
275run_dump_test "tlsie4"
276run_dump_test "tlsie5"
41bed6dd
L
277run_dump_test "hidden1"
278run_dump_test "hidden2"
279run_dump_test "hidden3"
280run_dump_test "protected1"
281run_dump_test "protected2"
282run_dump_test "protected3"
bdb892b9
L
283run_dump_test "protected4"
284run_dump_test "protected5"
e3c0e327 285run_dump_test "protected6a"
889c2a67 286run_dump_test "protected6b"
1d85728f 287run_dump_test "tlspie1"
959b0961 288run_dump_test "tlspie2"
a7b16ceb 289run_dump_test "nogot1"
0629d0af 290run_dump_test "nogot2"
56d4289c 291run_dump_test "discarded1"
2abca860 292run_dump_test "pr12718"
a81aeffc 293run_dump_test "pr12921"
2fe0fd06
L
294run_dump_test "pr12570a"
295run_dump_test "pr12570b"
80d87326
L
296run_dump_test "lea1a"
297run_dump_test "lea1b"
298run_dump_test "lea1c"
daa67607
L
299run_dump_test "lea1d"
300run_dump_test "lea1e"
301run_dump_test "lea1f"
3f65f599
L
302run_dump_test "mov1a"
303run_dump_test "mov1b"
02e2aef8
L
304run_dump_test "mov2a"
305run_dump_test "mov2b"
306run_dump_test "mov3"
02a86693
L
307run_dump_test "branch1"
308run_dump_test "call1"
309run_dump_test "call2"
caa65211
L
310run_dump_test "call3a"
311run_dump_test "call3b"
312run_dump_test "call3c"
313run_dump_test "call3d"
314run_dump_test "call3e"
315run_dump_test "call3f"
316run_dump_test "call3g"
317run_dump_test "call3h"
02a86693
L
318run_dump_test "jmp1"
319run_dump_test "jmp2"
320run_dump_test "load1"
caa65211 321run_dump_test "load1-nacl"
02a86693
L
322run_dump_test "load2"
323run_dump_test "load3"
324run_dump_test "load4a"
325run_dump_test "load4b"
326run_dump_test "load5a"
327run_dump_test "load5b"
328run_dump_test "load6"
7b7e7f1d 329run_dump_test "pr19175"
e20365c5 330run_dump_test "pr19615"
aec6b87e
L
331run_dump_test "pr19636-1a"
332run_dump_test "pr19636-1b"
333run_dump_test "pr19636-1c"
334run_dump_test "pr19636-1d"
335run_dump_test "pr19636-1d-nacl"
336run_dump_test "pr19636-1e"
337run_dump_test "pr19636-1f"
338run_dump_test "pr19636-1g"
339run_dump_test "pr19636-1h"
340run_dump_test "pr19636-1i"
341run_dump_test "pr19636-2a"
342run_dump_test "pr19636-2b"
343run_dump_test "pr19636-2c"
344run_dump_test "pr19636-2c-nacl"
345run_dump_test "pr19636-2d"
346run_dump_test "pr19636-2d-nacl"
347run_dump_test "pr19636-2e"
aec6b87e
L
348run_dump_test "pr19636-3a"
349run_dump_test "pr19636-3b"
350run_dump_test "pr19636-3c"
351run_dump_test "pr19636-3d"
352run_dump_test "pr19636-3e"
353run_dump_test "pr19636-3f"
354run_dump_test "pr19636-3g"
355run_dump_test "pr19636-4a"
356run_dump_test "pr19636-4b"
357run_dump_test "pr19636-4c"
358run_dump_test "pr19636-4d"
b8871f35 359run_dump_test "pr19645"
bae420ef
L
360run_dump_test "pr19609-1a"
361run_dump_test "pr19609-1b"
362run_dump_test "pr19609-1c"
363run_dump_test "pr19609-1d"
364run_dump_test "pr19609-1e"
365run_dump_test "pr19609-1f"
366run_dump_test "pr19609-1g"
367run_dump_test "pr19609-1h"
368run_dump_test "pr19609-1i"
369run_dump_test "pr19609-2a"
370run_dump_test "pr19609-2b"
371run_dump_test "pr19609-2c"
372run_dump_test "undefweaka"
373run_dump_test "undefweakb"
3ab94f96 374run_dump_test "pr19539"
25d17eb4
L
375
376if { !([istarget "i?86-*-linux*"]
5940a93c 377 || [istarget "i?86-*-gnu*"]
5a68afcf
RM
378 || [istarget "i?86-*-nacl*"]
379 || [istarget "x86_64-*-nacl*"]
25d17eb4
L
380 || [istarget "x86_64-*-linux*"]) } {
381 return
382}
383
384run_dump_test "compressed1"
a3293649 385run_dump_test "pr12627"
98920172 386run_dump_test "pr13302"
17d6eea5 387run_dump_test "pr14215"
998d811a 388run_dump_test "pr17057"
1952c5cd
L
389run_dump_test "pr17935-1"
390run_dump_test "pr17935-2"
8efa2874 391run_dump_test "pr18801"
13a2df29 392run_dump_test "pr18815"
2df3368d
L
393run_dump_test "pr19939a"
394run_dump_test "pr19939b"
4a7a7923 395
aec6b87e
L
396proc undefined_weak {cflags ldflags} {
397 set testname "Undefined weak symbol"
398 if { ![ string match "" $cflags$ldflags] } {
399 set testname "$testname ($cflags $ldflags)"
400 }
401
402 if { [ regexp "\-fPIE" $cflags]
403 && ![ regexp "\-z nodynamic-undefined-weak" $ldflags] } {
404 set weak_symbol "Weak defined"
405 } else {
406 set weak_symbol "Weak undefined"
407 }
408
409 run_cc_link_tests [list \
410 [list \
411 "Build libpr19704a.so" \
412 "-shared -Wl,-soname,libpr19704.so" \
413 "" \
414 { dummy.s } \
415 {} \
416 "libpr19704a.so" \
417 ] \
418 [list \
419 "Build libpr19704b.so" \
420 "-shared -Wl,-soname,libpr19704.so" \
421 "-fPIC" \
422 { pr19704b.c } \
423 {} \
424 "libpr19704b.so" \
425 ] \
426 ]
427
428 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
429
430 run_ld_link_exec_tests [] [list \
431 [list \
432 "Run pr19704" \
433 "$ldflags tmpdir/libpr19704.so -R tmpdir" \
434 "" \
435 { pr19704a.c } \
436 "pr19704" \
437 "pr19704.out" \
438 "$cflags" \
439 ] \
440 ]
441
442 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
443
444 set exec_output [run_host_cmd tmpdir/pr19704 ""]
445 if {![string match $weak_symbol $exec_output]} {
446 fail $testname
447 } else {
448 pass $testname
449 }
450}
451
ea9fb8b3
L
452# Add $PLT_CFLAGS if PLT is expected.
453global PLT_CFLAGS
454
4a7a7923
L
455# Must be Linux native with the C compiler
456if { [isnative]
457 && [istarget "i?86-*-linux*"]
458 && [which $CC] != 0 } {
459 run_cc_link_tests [list \
460 [list \
461 "Build plt-lib.so" \
462 "-shared" \
463 "-fPIC" \
464 { plt-lib.c } \
465 {} \
466 "libplt-lib.so" \
467 ] \
468 [list \
469 "Build libplt-main1.a" \
470 "" \
0cb4071e 471 "-fPIC -Wa,-mrelax-relocations=yes" \
4a7a7923
L
472 { plt-main1.c } \
473 {{readelf {-Wr} plt-main1.rd}} \
474 "libplt-main1.a" \
475 ] \
476 [list \
477 "Build libplt-main2.a" \
478 "" \
0cb4071e 479 "-fPIC -Wa,-mrelax-relocations=yes" \
4a7a7923
L
480 { plt-main2.c } \
481 {{readelf {-Wr} plt-main2.rd}} \
482 "libplt-main2.a" \
483 ] \
484 [list \
485 "Build libplt-main3.a" \
486 "" \
0cb4071e 487 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
4a7a7923
L
488 { plt-main3.c } \
489 {{readelf {-Wr} plt-main3.rd}} \
490 "libplt-main3.a" \
491 ] \
492 [list \
493 "Build libplt-main4.a" \
494 "" \
0cb4071e 495 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
4a7a7923
L
496 { plt-main4.c } \
497 {{readelf {-Wr} plt-main4.rd}} \
498 "libplt-main4.a" \
499 ] \
dd7e64d4
L
500 [list \
501 "Build plt-main" \
502 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
503 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
504 "" \
505 { plt-main5.c } \
506 {{readelf {-Wr} plt-main.rd}} \
507 "plt-main" \
508 ] \
509 [list \
510 "Build plt-main with PIE" \
511 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
512 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
513 "-fPIC" \
514 { plt-main5.c } \
515 {{readelf {-Wr} plt-main.rd}} \
516 "plt-main" \
517 ] \
d5597ebc
L
518 [list \
519 "Build copyreloc-lib.so" \
520 "-shared" \
521 "-fPIC" \
522 { copyreloc-lib.c } \
523 {} \
524 "copyreloc-lib.so" \
525 ] \
526 [list \
46175b4e
L
527 "Build libcopyreloc-main.a" \
528 "" \
d5597ebc
L
529 "" \
530 { copyreloc-main.S } \
46175b4e
L
531 {} \
532 "libcopyreloc-main.a" \
533 ] \
534 [list \
535 "Build copyreloc-main with PIE and GOTOFF (1)" \
536 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
537 "" \
538 { dummy.s } \
d5597ebc
L
539 {{readelf {-Wr} copyreloc-main1.rd}} \
540 "copyreloc-main" \
541 ] \
542 [list \
543 "Build copyreloc-main with PIE and GOTOFF (2)" \
46175b4e 544 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
d5597ebc 545 "" \
46175b4e 546 { dummy.s } \
d5597ebc
L
547 {{readelf {-Wr} copyreloc-main2.rd}} \
548 "copyreloc-main" \
549 ] \
550 [list \
551 "Build pr17689.so" \
552 "-shared" \
553 "-fPIC" \
554 { pr17689a.c } \
555 {} \
556 "pr17689.so" \
557 ] \
25070364
L
558 [list \
559 "Build pr17689.so with -z now" \
560 "-shared -Wl,-z,now" \
561 "-fPIC" \
562 { pr17689a.c } \
563 {{readelf {-Wr} pr17689now.rd}} \
564 "pr17689now.so" \
565 ] \
d5597ebc
L
566 [list \
567 "Build pr17689ver.so" \
568 "-shared -Wl,--version-script,pr17689a.t" \
569 "-fPIC" \
570 { pr17689a.c } \
571 {} \
572 "pr17689ver.so" \
573 ] \
574 [list \
575 "Build pr17689.a" \
576 "" \
577 "" \
578 { pr17689b.S } \
579 {} \
580 "pr17689.a" \
581 ] \
582 [list \
583 "Build pr17689 with PIE and GOTOFF" \
584 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
585 "" \
586 { dummy.c } \
587 {{readelf {-Wr} pr17689.rd}} \
588 "pr17689" \
589 ] \
25070364
L
590 [list \
591 "Build pr17689 with PIE, -z now and GOTOFF" \
592 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
593 "" \
594 { dummy.c } \
595 {{readelf {-Wr} pr17689now.rd}} \
596 "pr17689now" \
597 ] \
d5597ebc
L
598 [list \
599 "Build pr17689ver with PIE and GOTOFF" \
600 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
601 "" \
602 { dummy.c } \
603 {{readelf {-Wr} pr17689ver.rd}} \
604 "pr17689ver" \
605 ] \
606 [list \
607 "Build pr17827 with PIE and GOTOFF" \
608 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
609 "" \
610 { dummy.c } \
611 {{readelf {-Wr} pr17827.rd}} \
612 "pr17827" \
613 ] \
04ebc307
L
614 [list \
615 "Build pr18900.so" \
616 "-shared" \
617 "-fPIC" \
618 { pr18900a.c } \
619 "" \
620 "pr18900.so" \
621 ] \
622 [list \
23a4bd22
L
623 "Build pr18900.o" \
624 "-r -nostdlib" \
04ebc307
L
625 "" \
626 { pr18900b.c pr18900c.c } \
23a4bd22
L
627 "" \
628 "pr18900.o" \
629 ] \
630 [list \
631 "Build pr18900a" \
632 "tmpdir/pr18900.o tmpdir/pr18900.so" \
633 "" \
634 { dummy.s } \
04ebc307
L
635 {{readelf {-Wrd} pr18900a.rd}} \
636 "pr18900a" \
637 ] \
638 [list \
639 "Build pr18900b" \
23a4bd22 640 "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
04ebc307 641 "" \
23a4bd22 642 { dummy.s } \
04ebc307
L
643 {{readelf {-Wrd} pr18900b.rd}} \
644 "pr18900b" \
645 ] \
4b627c18
L
646 [list \
647 "Build pr19031.so" \
648 "-shared" \
649 "-fPIC" \
650 { pr19031a.c } \
651 "" \
652 "pr19031.so" \
653 ] \
02a86693
L
654 [list \
655 "Build got1d.so" \
656 "-shared" \
657 "" \
658 { got1d.S } \
659 "" \
660 "got1d.so" \
661 ] \
23a4bd22
L
662 [list \
663 "Build gotpc1.o" \
664 "-r -nostdlib" \
665 "" \
666 { got1a.S got1b.c got1c.c } \
667 "" \
668 "gotpc1.o" \
669 ] \
02a86693
L
670 [list \
671 "Build gotpc1" \
23a4bd22 672 "-Wl,--as-needed tmpdir/gotpc1.o tmpdir/got1d.so" \
0cb4071e 673 "-Wa,-mrelax-relocations=yes" \
23a4bd22 674 { dummy.s } \
02a86693
L
675 {{objdump {-dw} got1.dd}} \
676 "got1" \
677 ] \
ead3d542
L
678 [list \
679 "Build pr19319.so" \
680 "-shared" \
681 "" \
682 { pr19319a.S } \
683 "" \
684 "pr19319.so" \
685 ] \
686 [list \
687 "Build pr19319" \
688 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
689 "" \
690 { pr19319b.S } \
691 {{objdump {-dw} pr19319.dd}} \
692 "pr19319" \
693 ] \
4a7a7923
L
694 ]
695
696 run_ld_link_exec_tests [] [list \
697 [list \
698 "Run plt-main" \
699 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
700 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
701 "" \
702 { plt-main5.c } \
703 "plt-main" \
704 "plt-main.out" \
705 ] \
706 [list \
707 "Run plt-main with PIE" \
708 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
709 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
710 "" \
711 { plt-main5.c } \
712 "plt-main-pie" \
713 "plt-main.out" \
714 "-fPIC" \
715 ] \
d5597ebc
L
716 [list \
717 "Run copyreloc-main with PIE and GOTOFF" \
46175b4e 718 "--as-needed tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
d5597ebc 719 "" \
46175b4e 720 { dummy.s } \
d5597ebc
L
721 "copyreloc-main" \
722 "copyreloc-main.out" \
723 ] \
724 [list \
725 "Run pr17689 with PIE and GOTOFF" \
726 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
727 "" \
728 { dummy.c } \
729 "pr17689" \
730 "pr17689.out" \
731 ] \
25070364
L
732 [list \
733 "Run pr17689 with PIE, -z now and GOTOFF" \
734 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
735 "" \
736 { dummy.c } \
737 "pr17689now" \
738 "pr17689.out" \
739 ] \
d5597ebc
L
740 [list \
741 "Run pr17689ver with PIE and GOTOFF" \
742 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
743 "" \
744 { dummy.c } \
745 "pr17689ver" \
746 "pr17689.out" \
747 ] \
04ebc307
L
748 [list \
749 "Run pr18900" \
23a4bd22 750 "tmpdir/pr18900.o tmpdir/pr18900.so" \
04ebc307 751 "" \
23a4bd22 752 { dummy.s } \
04ebc307
L
753 "pr18900" \
754 "pr18900.out" \
755 ] \
4b627c18
L
756 [list \
757 "Run pr19031" \
758 "tmpdir/pr19031.so" \
759 "" \
760 { pr19031b.S pr19031c.c } \
761 "pr19031" \
762 "pr19031.out" \
763 ] \
02a86693
L
764 [list \
765 "Run got1" \
766 "tmpdir/got1d.so" \
767 "" \
768 { got1a.S got1b.c got1c.c } \
769 "got1" \
770 "got1.out" \
771 ] \
4a7a7923 772 ]
aec6b87e
L
773
774 undefined_weak "" ""
775 undefined_weak "-fPIE" ""
776 undefined_weak "-fPIE" "-pie"
777 undefined_weak "-fPIE" "-z nodynamic-undefined-weak"
778 undefined_weak "-fPIE" "-pie -z nodynamic-undefined-weak"
4a7a7923 779}
a3747075
L
780
781if { !([istarget "i?86-*-linux*"]
782 || [istarget "x86_64-*-linux*"]) } {
783 return
784}
785
786# Linux only tests
787run_dump_test "pltgot-1"
7c1e8d3e 788run_dump_test "pltgot-2"
This page took 0.612096 seconds and 4 git commands to generate.