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