a6efa53e6afee306f8628d6f0cf2cf1890934329
[external/binutils.git] / ld / testsuite / ld-i386 / i386.exp
1 # Expect script for ld-i386 tests
2 #   Copyright (C) 2002-2016 Free Software Foundation, Inc.
3 #
4 # This file is part of the GNU Binutils.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
20 #
21
22 # Test i386 linking; all types of relocs.  This tests the assembler and
23 # tools like objdump as well as the linker.
24
25 if {[istarget "i?86-*-vxworks"]} {
26     set i386tests {
27         {"VxWorks shared library test 1" "-shared -Tvxworks1.ld" ""
28          "" {vxworks1-lib.s}
29          {{readelf --relocs vxworks1-lib.rd} {objdump -dr vxworks1-lib.dd}
30           {readelf --symbols vxworks1-lib.nd} {readelf -d vxworks1-lib.td}}
31          "libvxworks1.so"}
32         {"VxWorks executable test 1 (dynamic)" \
33          "tmpdir/libvxworks1.so -Tvxworks1.ld -q --force-dynamic" ""
34          "" {vxworks1.s}
35          {{readelf --relocs vxworks1.rd} {objdump -dr vxworks1.dd}}
36          "vxworks1"}
37         {"VxWorks executable test 2 (dynamic)" \
38          "-Tvxworks1.ld -q --force-dynamic" ""
39          "" {vxworks2.s}
40          {{readelf --segments vxworks2.sd}}
41          "vxworks2"}
42         {"VxWorks executable test 2 (static)"
43          "-Tvxworks1.ld" ""
44          "" {vxworks2.s}
45          {{readelf --segments vxworks2-static.sd}}
46          "vxworks2"}
47     }
48     run_ld_link_tests $i386tests
49     run_dump_test "vxworks1-static"
50 }
51
52 if [istarget "*-*-go32*"] {
53     run_ld_link_tests {{"go32 stub" "" "" "" {zero.s} {} "go32stub"}}
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
100 if { !([istarget "i?86-*-elf*"]
101        || (([istarget "i?86-*-linux*"]
102             || [istarget "i?86-*-gnu*"])
103            && ![istarget "*-*-*aout*"]
104            && ![istarget "*-*-*oldld*"])
105        || [istarget "i?86-*-nacl*"]
106        || [istarget "x86_64-*-nacl*"]
107        || [istarget "x86_64-*-linux*"]
108        || [istarget "amd64-*-linux*"]) } {
109     return
110 }
111
112 # List contains test-items with 3 items followed by 2 lists:
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
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
121 set i386tests {
122     {"Helper shared library (basic PLT test)"
123       "-shared -melf_i386" "" "--32" {pltlib.s} {} "libpltlib.so"}
124     {"basic PLT generation (non-PIC)"
125      "-melf_i386 tmpdir/libpltlib.so" "" "--32" {plt.s}
126      {{objdump -drj.plt plt.pd}} "plt"}
127     {"basic PLT generation (PIC)"
128      "-shared -melf_i386 tmpdir/libpltlib.so" "" "--32" {plt-pic.s}
129      {{objdump -drj.plt plt-pic.pd}} "libplt-pic.so"}
130     {"TLS -fpic -shared transitions"
131      "-shared -melf_i386 --no-ld-generated-unwind-info" ""
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"}
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"}
143     {"TLS descriptor -fpic -shared transitions"
144      "-shared -melf_i386 --no-ld-generated-unwind-info" ""
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"}
149     {"Helper shared library" "-shared -melf_i386" ""
150      "--32" {tlslib.s} {} "libtlslib.so"}
151     {"TLS -fpic and -fno-pic exec transitions"
152      "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
153      "--32" {tlsbinpic.s tlsbin.s}
154      {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
155       {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
156       "tlsbin"}
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"}
164     {"TLS descriptor -fpic and -fno-pic exec transitions"
165      "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
166      "--32" {tlsbindesc.s tlsbin.s}
167      {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
168       {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
169       "tlsbindesc"}
170     {"TLS -fno-pic -shared"
171      "-shared -melf_i386 --no-ld-generated-unwind-info" ""
172      "--32" {tlsnopic1.s tlsnopic2.s}
173      {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
174       {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
175     {"TLS with global dynamic and descriptors"
176      "-shared -melf_i386 --no-ld-generated-unwind-info" ""
177      "--32" {tlsgdesc.s}
178      {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
179       "libtlsgdesc.so"}
180     {"TLS in debug sections" "-melf_i386" ""
181      "--32" {tlsg.s}
182      {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
183     {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
184      {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
185     {"Reloc section order" "-shared -melf_i386 -z nocombreloc" "" "--32"
186      {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
187     {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
188      {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
189     {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
190      "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
191     {"TLS GD->LE transition" "-melf_i386" ""
192      "--32" {tlsgd1.s}
193      {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
194     {"TLS GD->LE transition without PLT" "-melf_i386" ""
195      "-mrelax-relocations=yes --32"
196      {tlsgd3.s}
197      {{objdump -dwr tlsgd3.dd}} "tlsgd3"}
198     {"TLS LD->LE transition" "-melf_i386" ""
199      "--32" {tlsld1.s}
200      {{objdump -dwr tlsld1.dd}} "tlsld1"}
201     {"TLS LD->LE transition without PLT" "-melf_i386" ""
202      "-mrelax-relocations=yes --32"
203      {tlsld2.s}
204      {{objdump -dwr tlsld2.dd}} "tlsld2"}
205     {"TLS IE->LE transition" "-melf_i386" ""
206      "--32" {tlsie1.s}
207      {{objdump -dwr tlsie1.dd}} "tlsie1"}
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"}
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"}
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"}
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"}
228 }
229
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.
232 if [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.
237     set options_regsub(ld) {elf_i386 elf_i386_nacl}
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
248 proc 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"
281     run_dump_test "iamcu-4"
282 }
283
284 iamcu_tests
285
286 run_ld_link_tests $i386tests
287
288 run_dump_test "abs"
289 run_dump_test "pcrel8"
290 run_dump_test "pcrel16"
291 run_dump_test "pcrel16abs"
292 run_dump_test "alloc"
293 run_dump_test "warn1"
294 run_dump_test "tlsgd2"
295 run_dump_test "tlsgd4"
296 run_dump_test "tlsie2"
297 run_dump_test "tlsie3"
298 run_dump_test "tlsie4"
299 run_dump_test "tlsie5"
300 run_dump_test "hidden1"
301 run_dump_test "hidden2"
302 run_dump_test "hidden3"
303 run_dump_test "protected1"
304 run_dump_test "protected2"
305 run_dump_test "protected3"
306 run_dump_test "protected4"
307 run_dump_test "protected5"
308 run_dump_test "protected6a"
309 run_dump_test "protected6b"
310 run_dump_test "tlspie1"
311 run_dump_test "tlspie2"
312 run_dump_test "tlspie3a"
313 run_dump_test "tlspie3b"
314 run_dump_test "tlspie3c"
315 run_dump_test "nogot1"
316 run_dump_test "nogot2"
317 run_dump_test "discarded1"
318 run_dump_test "pr12718"
319 run_dump_test "pr12921"
320 run_dump_test "pr12570a"
321 run_dump_test "pr12570b"
322 run_dump_test "lea1a"
323 run_dump_test "lea1b"
324 run_dump_test "lea1c"
325 run_dump_test "lea1d"
326 run_dump_test "lea1e"
327 run_dump_test "lea1f"
328 run_dump_test "mov1a"
329 run_dump_test "mov1b"
330 run_dump_test "mov2a"
331 run_dump_test "mov2b"
332 run_dump_test "mov3"
333 run_dump_test "branch1"
334 run_dump_test "call1"
335 run_dump_test "call2"
336 run_dump_test "call3a"
337 run_dump_test "call3b"
338 run_dump_test "call3c"
339 run_dump_test "call3d"
340 run_dump_test "call3e"
341 run_dump_test "call3f"
342 run_dump_test "call3g"
343 run_dump_test "call3h"
344 run_dump_test "jmp1"
345 run_dump_test "jmp2"
346 run_dump_test "load1"
347 run_dump_test "load1-nacl"
348 run_dump_test "load2"
349 run_dump_test "load3"
350 run_dump_test "load4a"
351 run_dump_test "load4b"
352 run_dump_test "load5a"
353 run_dump_test "load5b"
354 run_dump_test "load6"
355 run_dump_test "load7"
356 run_dump_test "pr19175"
357 run_dump_test "pr19615"
358 run_dump_test "pr19636-1a"
359 run_dump_test "pr19636-1b"
360 run_dump_test "pr19636-1c"
361 run_dump_test "pr19636-1d"
362 run_dump_test "pr19636-1d-nacl"
363 run_dump_test "pr19636-1e"
364 run_dump_test "pr19636-1f"
365 run_dump_test "pr19636-1g"
366 run_dump_test "pr19636-1h"
367 run_dump_test "pr19636-1i"
368 run_dump_test "pr19636-2a"
369 run_dump_test "pr19636-2b"
370 run_dump_test "pr19636-2c"
371 run_dump_test "pr19636-2c-nacl"
372 run_dump_test "pr19636-2d"
373 run_dump_test "pr19636-2d-nacl"
374 run_dump_test "pr19636-2e"
375 run_dump_test "pr19636-3a"
376 run_dump_test "pr19636-3b"
377 run_dump_test "pr19636-3c"
378 run_dump_test "pr19636-3d"
379 run_dump_test "pr19636-3e"
380 run_dump_test "pr19636-3f"
381 run_dump_test "pr19636-3g"
382 run_dump_test "pr19636-4a"
383 run_dump_test "pr19636-4b"
384 run_dump_test "pr19636-4c"
385 run_dump_test "pr19636-4d"
386 run_dump_test "pr19645"
387 run_dump_test "pr19609-1a"
388 run_dump_test "pr19609-1b"
389 run_dump_test "pr19609-1c"
390 run_dump_test "pr19609-1d"
391 run_dump_test "pr19609-1e"
392 run_dump_test "pr19609-1f"
393 run_dump_test "pr19609-1g"
394 run_dump_test "pr19609-1h"
395 run_dump_test "pr19609-1i"
396 run_dump_test "pr19609-2a"
397 run_dump_test "pr19609-2b"
398 run_dump_test "pr19609-2c"
399 run_dump_test "undefweaka"
400 run_dump_test "undefweakb"
401 run_dump_test "pr19539"
402 run_dump_test "pr20117"
403 run_dump_test "pr20244-1a"
404 run_dump_test "pr20244-1b"
405 run_dump_test "pr20244-1c"
406
407 if { !([istarget "i?86-*-linux*"]
408        || [istarget "i?86-*-gnu*"]
409        || [istarget "i?86-*-nacl*"]
410        || [istarget "x86_64-*-nacl*"]
411        || [istarget "x86_64-*-linux*"]) } {
412     return
413 }
414
415 run_dump_test "compressed1"
416 run_dump_test "pr12627"
417 run_dump_test "pr13302"
418 run_dump_test "pr14215"
419 run_dump_test "pr17057"
420 run_dump_test "pr17935-1"
421 run_dump_test "pr17935-2"
422 run_dump_test "pr18801"
423 run_dump_test "pr18815"
424 run_dump_test "pr19939a"
425 run_dump_test "pr19939b"
426
427 proc undefined_weak {cflags ldflags} {
428     set testname "Undefined weak symbol"
429     if { ![ string match "" $cflags$ldflags] } {
430         set testname "$testname ($cflags $ldflags)"
431     }
432
433     if { [ regexp "\-fPIE" $cflags]
434          && ![ regexp "\-z nodynamic-undefined-weak" $ldflags] } {
435         set weak_symbol "Weak defined"
436     } else {
437         set weak_symbol "Weak undefined"
438     }
439
440     run_cc_link_tests [list \
441         [list \
442             "Build libpr19704a.so" \
443             "-shared -Wl,-soname,libpr19704.so" \
444             "" \
445             { dummy.s } \
446             {} \
447             "libpr19704a.so" \
448         ] \
449         [list \
450             "Build libpr19704b.so" \
451             "-shared -Wl,-soname,libpr19704.so" \
452             "-fPIC" \
453             { pr19704b.c } \
454             {} \
455             "libpr19704b.so" \
456         ] \
457     ]
458
459     exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
460
461     run_ld_link_exec_tests [] [list \
462         [list \
463             "Run pr19704" \
464             "$ldflags tmpdir/libpr19704.so -R tmpdir" \
465             "" \
466             { pr19704a.c } \
467             "pr19704" \
468             "pr19704.out" \
469             "$cflags" \
470         ] \
471     ]
472
473     exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
474
475     set exec_output [run_host_cmd tmpdir/pr19704 ""]
476     if {![string match $weak_symbol $exec_output]} {
477         fail $testname
478     } else {
479         pass $testname
480     }
481 }
482
483 # Add $PLT_CFLAGS if PLT is expected.
484 global PLT_CFLAGS
485
486 # Must be Linux native with the C compiler
487 if { [isnative]
488      && [istarget "i?86-*-linux*"]
489      && [which $CC] != 0 } {
490     run_cc_link_tests [list \
491         [list \
492             "Build plt-lib.so" \
493             "-shared" \
494             "-fPIC" \
495             { plt-lib.c } \
496             {} \
497             "libplt-lib.so" \
498         ] \
499         [list \
500             "Build libplt-main1.a" \
501             "" \
502             "-fPIC -Wa,-mrelax-relocations=yes" \
503             { plt-main1.c } \
504             {{readelf {-Wr} plt-main1.rd}} \
505             "libplt-main1.a" \
506         ] \
507         [list \
508             "Build libplt-main2.a" \
509             "" \
510             "-fPIC -Wa,-mrelax-relocations=yes" \
511             { plt-main2.c } \
512             {{readelf {-Wr} plt-main2.rd}} \
513             "libplt-main2.a" \
514         ] \
515         [list \
516             "Build libplt-main3.a" \
517             "" \
518             "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
519             { plt-main3.c } \
520             {{readelf {-Wr} plt-main3.rd}} \
521             "libplt-main3.a" \
522         ] \
523         [list \
524             "Build libplt-main4.a" \
525             "" \
526             "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
527             { plt-main4.c } \
528             {{readelf {-Wr} plt-main4.rd}} \
529             "libplt-main4.a" \
530         ] \
531         [list \
532             "Build plt-main" \
533             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
534              tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
535             "" \
536             { plt-main5.c } \
537             {{readelf {-Wr} plt-main.rd}} \
538             "plt-main" \
539         ] \
540         [list \
541             "Build plt-main with PIE" \
542             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
543              tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
544             "-fPIC" \
545             { plt-main5.c } \
546             {{readelf {-Wr} plt-main.rd}} \
547             "plt-main" \
548         ] \
549         [list \
550             "Build copyreloc-lib.so" \
551             "-shared" \
552             "-fPIC" \
553             { copyreloc-lib.c } \
554             {} \
555             "copyreloc-lib.so" \
556         ] \
557         [list \
558             "Build libcopyreloc-main.a" \
559             "" \
560             "" \
561             { copyreloc-main.S } \
562             {} \
563             "libcopyreloc-main.a" \
564         ] \
565         [list \
566             "Build copyreloc-main with PIE and GOTOFF (1)" \
567             "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
568             "" \
569             { dummy.s } \
570             {{readelf {-Wr} copyreloc-main1.rd}} \
571             "copyreloc-main" \
572         ] \
573         [list \
574             "Build copyreloc-main with PIE and GOTOFF (2)" \
575             "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
576             "" \
577             { dummy.s } \
578             {{readelf {-Wr} copyreloc-main2.rd}} \
579             "copyreloc-main" \
580         ] \
581         [list \
582             "Build pr17689.so" \
583             "-shared" \
584             "-fPIC" \
585             { pr17689a.c } \
586             {} \
587             "pr17689.so" \
588         ] \
589         [list \
590             "Build pr17689.so with -z now" \
591             "-shared -Wl,-z,now" \
592             "-fPIC" \
593             { pr17689a.c } \
594             {{readelf {-Wr} pr17689now.rd}} \
595             "pr17689now.so" \
596         ] \
597         [list \
598             "Build pr17689ver.so" \
599             "-shared -Wl,--version-script,pr17689a.t" \
600             "-fPIC" \
601             { pr17689a.c } \
602             {} \
603             "pr17689ver.so" \
604         ] \
605         [list \
606             "Build pr17689.a" \
607             "" \
608             "" \
609             { pr17689b.S } \
610             {} \
611             "pr17689.a" \
612         ] \
613         [list \
614             "Build pr17689 with PIE and GOTOFF" \
615             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
616             "" \
617             { dummy.c } \
618             {{readelf {-Wr} pr17689.rd}} \
619             "pr17689" \
620         ] \
621         [list \
622             "Build pr17689 with PIE, -z now and GOTOFF" \
623             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
624             "" \
625             { dummy.c } \
626             {{readelf {-Wr} pr17689now.rd}} \
627             "pr17689now" \
628         ] \
629         [list \
630             "Build pr17689ver with PIE and GOTOFF" \
631             "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
632             "" \
633             { dummy.c } \
634             {{readelf {-Wr} pr17689ver.rd}} \
635             "pr17689ver" \
636         ] \
637         [list \
638             "Build pr17827 with PIE and GOTOFF" \
639             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
640             "" \
641             { dummy.c } \
642             {{readelf {-Wr} pr17827.rd}} \
643             "pr17827" \
644         ] \
645         [list \
646             "Build pr18900.so" \
647             "-shared" \
648             "-fPIC" \
649             { pr18900a.c } \
650             "" \
651             "pr18900.so" \
652         ] \
653         [list \
654             "Build pr18900.o" \
655             "-r -nostdlib" \
656             "" \
657             { pr18900b.c pr18900c.c } \
658             "" \
659             "pr18900.o" \
660         ] \
661         [list \
662             "Build pr18900a" \
663             "tmpdir/pr18900.o tmpdir/pr18900.so" \
664             "" \
665             { dummy.s } \
666             {{readelf {-Wrd} pr18900a.rd}} \
667             "pr18900a" \
668         ] \
669         [list \
670             "Build pr18900b" \
671             "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
672             "" \
673             { dummy.s } \
674             {{readelf {-Wrd} pr18900b.rd}} \
675             "pr18900b" \
676         ] \
677         [list \
678             "Build pr19031.so" \
679             "-shared" \
680             "-fPIC" \
681             { pr19031a.c } \
682             "" \
683             "pr19031.so" \
684         ] \
685         [list \
686             "Build got1d.so" \
687             "-shared" \
688             "" \
689             { got1d.S } \
690             "" \
691             "got1d.so" \
692         ] \
693         [list \
694             "Build gotpc1.o" \
695             "-r -nostdlib" \
696             "-Wa,-mrelax-relocations=yes" \
697             { got1a.S got1b.c got1c.c } \
698             "" \
699             "gotpc1.o" \
700         ] \
701         [list \
702             "Build gotpc1" \
703             "-Wl,--as-needed tmpdir/gotpc1.o tmpdir/got1d.so" \
704             "" \
705             { dummy.s } \
706             {{objdump {-dw} got1.dd}} \
707             "got1" \
708         ] \
709         [list \
710             "Build pr19319.so" \
711             "-shared" \
712             "" \
713             { pr19319a.S } \
714             "" \
715             "pr19319.so" \
716         ] \
717         [list \
718             "Build pr19319" \
719             "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
720             "-Wa,-mrelax-relocations=yes" \
721             { pr19319b.S } \
722             {{objdump {-dw} pr19319.dd}} \
723             "pr19319" \
724         ] \
725     ]
726
727     run_ld_link_exec_tests [] [list \
728         [list \
729             "Run plt-main" \
730             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
731              tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
732             "" \
733             { plt-main5.c } \
734             "plt-main" \
735             "plt-main.out" \
736         ] \
737         [list \
738             "Run plt-main with PIE" \
739             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
740              tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
741             "" \
742             { plt-main5.c } \
743             "plt-main-pie" \
744             "plt-main.out" \
745             "-fPIC" \
746         ] \
747         [list \
748             "Run copyreloc-main with PIE and GOTOFF" \
749             "--as-needed tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
750             "" \
751             { dummy.s } \
752             "copyreloc-main" \
753             "copyreloc-main.out" \
754         ] \
755         [list \
756             "Run pr17689 with PIE and GOTOFF" \
757             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
758             "" \
759             { dummy.c } \
760             "pr17689" \
761             "pr17689.out" \
762         ] \
763         [list \
764             "Run pr17689 with PIE, -z now and GOTOFF" \
765             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
766             "" \
767             { dummy.c } \
768             "pr17689now" \
769             "pr17689.out" \
770         ] \
771         [list \
772             "Run pr17689ver with PIE and GOTOFF" \
773             "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
774             "" \
775             { dummy.c } \
776             "pr17689ver" \
777             "pr17689.out" \
778         ] \
779         [list \
780             "Run pr18900" \
781             "tmpdir/pr18900.o tmpdir/pr18900.so" \
782             "" \
783             { dummy.s } \
784             "pr18900" \
785             "pr18900.out" \
786         ] \
787         [list \
788             "Run pr19031" \
789             "tmpdir/pr19031.so" \
790             "" \
791             { pr19031b.S pr19031c.c } \
792             "pr19031" \
793             "pr19031.out" \
794         ] \
795         [list \
796             "Run got1" \
797             "tmpdir/got1d.so" \
798             "" \
799             { got1a.S got1b.c got1c.c } \
800             "got1" \
801             "got1.out" \
802         ] \
803     ]
804
805     undefined_weak "" ""
806     undefined_weak "-fPIE" ""
807     undefined_weak "-fPIE" "-pie"
808     undefined_weak "-fPIE" "-z nodynamic-undefined-weak"
809     undefined_weak "-fPIE" "-pie -z nodynamic-undefined-weak"
810 }
811
812 if { !([istarget "i?86-*-linux*"]
813        || [istarget "x86_64-*-linux*"]) } {
814     return
815 }
816
817 # Linux only tests
818 run_dump_test "pltgot-1"
819 run_dump_test "pltgot-2"