]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-x86-64/x86-64.exp
Add --decompress option to readelf to decompress sections before they are dumped.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-x86-64 / x86-64.exp
CommitLineData
bffbf940 1# Expect script for ld-x86_64 tests
b90efa5b 2# Copyright (C) 2002-2015 Free Software Foundation, Inc.
bffbf940 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
bffbf940 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
bffbf940
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.
bffbf940
JJ
20#
21
22# Test x86_64 linking; all types of relocs. This tests the assembler and
23# tools like objdump as well as the linker.
24
25if { !([istarget "x86_64-*-elf*"]
5a68afcf 26 || [istarget "x86_64-*-nacl*"]
bffbf940
JJ
27 || [istarget "x86_64-*-linux*"]) } {
28 return
29}
30
5a68afcf
RM
31if [istarget "*-*-nacl*"] {
32 set emul "elf_x86_64_nacl"
33} else {
34 set emul "elf_x86_64"
35}
36
bffbf940 37# List contains test-items with 3 items followed by 2 lists:
897aea50
MR
38# 0:name 1:ld early options 2:ld late options 3:assembler options
39# 4:filenames of assembler files 5: action and options. 6: name of output file
bffbf940
JJ
40
41# Actions:
42# objdump: Apply objdump options on result. Compare with regex (last arg).
43# nm: Apply nm options on result. Compare with regex (last arg).
44# readelf: Apply readelf options on result. Compare with regex (last arg).
45
46set x86_64tests {
5a68afcf 47 {"Helper shared library (basic PLT test)"
897aea50 48 "-shared -melf_x86_64" "" "--64" {pltlib.s} {} "libpltlib.so"}
5a68afcf 49 {"basic PLT generation"
897aea50 50 "-melf_x86_64 tmpdir/libpltlib.so" "" "--64" {plt.s}
5a68afcf 51 {{objdump -drj.plt plt.pd}} "plt"}
e41b3a13 52 {"TLS -fpic -shared transitions"
897aea50 53 "-shared -melf_x86_64 --no-ld-generated-unwind-info" ""
bffbf940
JJ
54 "--64" {tlspic1.s tlspic2.s}
55 {{readelf -WSsrl tlspic.rd} {objdump -drj.text tlspic.dd}
56 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
57 "libtlspic.so"}
e41b3a13 58 {"TLS descriptor -fpic -shared transitions"
897aea50 59 "-shared -melf_x86_64 --no-ld-generated-unwind-info" ""
67a4f2b7
AO
60 "--64" {tlsdesc.s tlspic2.s}
61 {{readelf -WSsrld tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
62 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}
63 {objdump -drj.plt tlsdesc.pd}} "libtlsdesc.so"}
897aea50 64 {"Helper shared library" "-shared -melf_x86_64" ""
bffbf940
JJ
65 "--64" {tlslib.s} {} "libtlslib.so"}
66 {"TLS -fpic and -fno-pic exec transitions"
897aea50 67 "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
e41b3a13 68 "--64" {tlsbinpic.s tlsbin.s}
bffbf940
JJ
69 {{readelf -WSsrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
70 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
71 "tlsbin"}
67a4f2b7 72 {"TLS descriptor -fpic and -fno-pic exec transitions"
897aea50 73 "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
e41b3a13 74 "--64" {tlsbindesc.s tlsbin.s}
67a4f2b7
AO
75 {{readelf -WSsrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
76 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
77 "tlsbindesc"}
78 {"TLS with global dynamic and descriptors"
897aea50 79 "-shared -melf_x86_64 --no-ld-generated-unwind-info" ""
e41b3a13 80 "--64" {tlsgdesc.s}
67a4f2b7
AO
81 {{readelf -WSsrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
82 "libtlsgdesc.so"}
897aea50 83 {"TLS in debug sections" "-melf_x86_64" ""
a45bb67d
JJ
84 "--64" {tlsg.s}
85 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
897aea50 86 {"TLS GD->LE transition" "-melf_x86_64" ""
a3fadc9a
L
87 "--64" {tlsgd1.s}
88 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
897aea50 89 {"TLS LD->LE transition" "-melf_x86_64" ""
a3fadc9a
L
90 "--64" {tlsld1.s}
91 {{objdump -dwr tlsld1.dd}} "tlsld1"}
897aea50 92 {"TLS IE->LE transition" "-melf_x86_64" ""
dd1093aa
L
93 "--64" {tlsie1.s}
94 {{objdump -dwr tlsie1.dd}} "tlsie1"}
897aea50 95 {"Helper 64bit object 1" "-r -melf_x86_64" ""
39334f3a 96 "--64" {mixed1a.s} {} "libmixe1a.o"}
897aea50 97 {"Helper 32bit object 1" "-r -melf_i386" ""
39334f3a 98 "--32" {mixed1b.s} {} "libmixe1b.o"}
897aea50 99 {"Helper 64bit object 2" "-r -melf_x86_64" ""
39334f3a 100 "--64" {mixed2a.s} {} "libmixe2a.o"}
897aea50 101 {"Helper 32bit object 2" "-r -melf_i386" ""
39334f3a 102 "--32" {mixed2b.s} {} "libmixe2b.o"}
897aea50
MR
103 {"Split by file with 'l' flag on section."
104 "-split-by-file -r -melf_x86_64" ""
3dbcc61d
NC
105 "--64" {split-by-file1.s split-by-file2.s}
106 {{readelf -SW split-by-file.rd}} "split-by-file.o"}
897aea50 107 {"TLS X32 IE->LE transition" "-melf32_x86_64" ""
4a4c5f25
L
108 "--x32" {tlsie4.s}
109 {{objdump -dwr tlsie4.dd}} "tlsie4"}
897aea50 110 {"TLS X32 GD->LE transition" "-melf32_x86_64" ""
52bc799a
L
111 "--x32" {tlsgd4.s}
112 {{objdump -dwr tlsgd4.dd}} "tlsgd4"}
897aea50 113 {"Helper TLS GD->IE transition DSO" "-shared -melf_x86_64" ""
52bc799a 114 "--64" {tlsgd5b.s} {} "libtlsgd5.so"}
897aea50 115 {"TLS GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
52bc799a
L
116 "--64" {tlsgd5a.s}
117 {{objdump -dwr tlsgd5.dd}} "tlsgd5"}
897aea50 118 {"Helper TLS X32 GD->IE transition DSO" "-shared -melf32_x86_64" ""
52bc799a 119 "--x32" {tlsgd6b.s} {} "libtlsgd6.so"}
897aea50 120 {"TLS X32 GD->IE transition" "-melf32_x86_64 tmpdir/libtlsgd6.so" ""
52bc799a
L
121 "--x32" {tlsgd6a.s}
122 {{objdump -dwr tlsgd6.dd}} "tlsgd6"}
897aea50 123 {"TLS X32 LD->LE transition" "-melf32_x86_64" ""
52bc799a
L
124 "--x32" {tlsld2.s}
125 {{objdump -dwr tlsld2.dd}} "tlsld2"}
5c98a14e
JJ
126 {"TLS -mcmodel=large GD->LE transition" "-melf_x86_64" ""
127 "--64" {tlsgd7.s}
128 {{objdump -dwr tlsgd7.dd}} "tlsgd7"}
129 {"TLS -mcmodel=large LD->LE transition" "-melf_x86_64" ""
130 "--64" {tlsld3.s}
131 {{objdump -dwr tlsld3.dd}} "tlsld3"}
132 {"TLS -mcmodel=large GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
133 "--64" {tlsgd8.s}
134 {{objdump -dwrj.text tlsgd8.dd}} "tlsgd8"}
5a68afcf 135
897aea50
MR
136 {"build 32-bit object with 33 locals" "-melf_x86_64 -e 0" "" "--32" {32bit.s} {{ ld incompatible.l }} "dummy" }
137 {"build 64-bit object" "-melf_x86_64 -e 0 --defsym foo=1" "" "--64" {64bit.s} {} "dummy" }
138 {"link mixed objects" "-melf_x86_64 -e 0 tmpdir/32bit.o tmpdir/64bit.o" "" "" {} { { ld incompatible.l } } "mixed"}
29a9f53e
L
139 {"PR ld/17313 (1)" "-melf_x86_64" ""
140 "--64" {dummy.s} {} ""}
141 {"PR ld/17313 (2)" "-melf_x86_64 -shared --just-symbols=tmpdir/dummy.o" ""
142 "--64" {lea1.s} {} "libpr17313.so"}
c8831961
L
143 {"PR ld/17306 (1)" "-melf_x86_64" ""
144 "--64" {pr17306b.s} {} ""}
145 {"PR ld/17306 (2)" "-melf_x86_64 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
146 "--64" {pr17306a.s} {} "libpr17306.so"}
f7483970
L
147 {"PR ld/17709 (1)" "-melf_x86_64 -shared" ""
148 "--64" {pr17709a.s} {} "libpr17709.so"}
149 {"PR ld/17709 (2)" "-melf_x86_64 tmpdir/libpr17709.so" ""
150 "--64" {pr17709b.s} {{readelf -rW pr17709.rd}} "pr17709"}
5a68afcf
RM
151}
152
153# So as to avoid rewriting every last test case here in a nacl variant,
154# we use black magic to massage the generic cases into nacl-variant cases.
155if [istarget "*-*-nacl*"] {
156 set emul elf_x86_64_nacl
157
158 set lhs {elf(32)?_(i386|x86_64)[[:>:]]}
159 set rhs {&_nacl}
160
161 # Change all the -melf_x86_64 to -melf_x86_64_nacl so linking can succeed.
162 regsub -all -- $lhs $x86_64tests $rhs x86_64tests
163
164 # Same, applied to all the run_dump_test cases.
165 set options_regsub(ld) [list $lhs $rhs]
166
167 # The section/segment layout differs too much for the vanilla
168 # readelf output files to match. So massage the cases so that
169 # they refer to a foo-nacl.rd file instead of a foo.rd file.
170 regsub -all -- {([a-z0-9]+)\.rd} $x86_64tests {\1-nacl.rd} x86_64tests
171
172 # Likewise for PLTs.
173 regsub -all -- {([a-z0-9]+)\.pd} $x86_64tests {\1-nacl.pd} x86_64tests
174} else {
175 set emul elf_x86_64
bffbf940
JJ
176}
177
178run_ld_link_tests $x86_64tests
ac2aa337 179
39334f3a
L
180global link_output
181global ld
182
b51176f1 183set test_name "Mixed x86_64 and i386 input test 1"
39334f3a 184set test mixed1
5a68afcf 185if { ![ld_simple_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
64b384e1 186 if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
5a68afcf 187 pass "$test_name"
39334f3a 188 } {
5a68afcf 189 fail "$test_name"
39334f3a
L
190 }
191}
192
b51176f1 193set test_name "Mixed x86_64 and i386 input test 2"
39334f3a 194set test mixed2
5a68afcf 195if { ![ld_simple_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
64b384e1 196 if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
5a68afcf 197 pass "$test_name"
39334f3a 198 } {
5a68afcf 199 fail "$test_name"
39334f3a
L
200 }
201}
202
ac2aa337 203run_dump_test "abs"
8a9036a4 204run_dump_test "abs-l1om"
ac2aa337
JB
205run_dump_test "pcrel8"
206run_dump_test "pcrel16"
dd1093aa
L
207run_dump_test "tlsgd2"
208run_dump_test "tlsgd3"
209run_dump_test "tlsie2"
210run_dump_test "tlsie3"
41bed6dd
L
211run_dump_test "hidden1"
212run_dump_test "hidden2"
213run_dump_test "hidden3"
e3c0e327
L
214run_dump_test "hidden4"
215run_dump_test "hidden5"
41bed6dd
L
216run_dump_test "protected1"
217run_dump_test "protected2"
8a9036a4 218run_dump_test "protected2-l1om"
41bed6dd 219run_dump_test "protected3"
8a9036a4 220run_dump_test "protected3-l1om"
bdb892b9
L
221run_dump_test "protected4"
222run_dump_test "protected5"
e3c0e327 223run_dump_test "protected6a"
889c2a67 224run_dump_test "protected6b"
3d949995
L
225run_dump_test "protected7a"
226run_dump_test "protected7b"
9b769489 227run_dump_test "tlsle1"
1d85728f 228run_dump_test "tlspie1"
6f8bcf84 229run_dump_test "unique1"
a7b16ceb 230run_dump_test "nogot1"
0629d0af 231run_dump_test "nogot2"
56d4289c 232run_dump_test "discarded1"
2abca860 233run_dump_test "pr12718"
a81aeffc 234run_dump_test "pr12921"
aed64b35 235run_dump_test "pr13947"
2fe0fd06
L
236run_dump_test "pr12570a"
237run_dump_test "pr12570b"
17d6eea5 238run_dump_test "pr14215"
8981c88a 239run_dump_test "pr14207"
553d1284 240run_dump_test "gotplt1"
6333bc0d 241run_dump_test "pie1"
25d17eb4 242
5a68afcf 243if { ![istarget "x86_64-*-linux*"] && ![istarget "x86_64-*-nacl*"]} {
25d17eb4
L
244 return
245}
246
5a68afcf 247if ![ld_assemble $as "--x32 $srcdir/$subdir/start.s" tmpdir/startx32.o] {
889a4d3e
L
248 unresolved "Build ILP32 start.o"
249 return
250}
251
5a68afcf 252if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
889a4d3e
L
253 unresolved "Build ia32 start.o"
254 return
255}
256
5a68afcf 257if ![ld_assemble $as "--64 $srcdir/$subdir/start.s" tmpdir/start64.o] {
889a4d3e
L
258 unresolved "Build LP64 start.o"
259 return
260}
261
5a68afcf 262if ![ld_assemble $as "--x32 $srcdir/$subdir/foo.s" tmpdir/foox32.o] {
889a4d3e
L
263 unresolved "Build ILP32 foo.o"
264 return
265}
266
5a68afcf 267if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
889a4d3e
L
268 unresolved "Build ia32 foo.o"
269 return
270}
271
5a68afcf 272if ![ld_assemble $as "--64 $srcdir/$subdir/foo.s" tmpdir/foo64.o] {
889a4d3e
L
273 unresolved "Build LP64 foo.o"
274 return
275}
276
25d17eb4 277run_dump_test "compressed1"
889a4d3e
L
278run_dump_test "ilp32-1"
279run_dump_test "ilp32-2"
280run_dump_test "ilp32-3"
82e96e07 281run_dump_test "ilp32-4"
5a68afcf 282run_dump_test "ilp32-4-nacl"
248775ba 283run_dump_test "ilp32-5"
d7921315
L
284run_dump_test "ilp32-6"
285run_dump_test "ilp32-7"
286run_dump_test "ilp32-8"
287run_dump_test "ilp32-9"
df4f9443 288run_dump_test "ilp32-10"
8cf0d2dd 289run_dump_test "ilp32-11"
889a4d3e
L
290run_dump_test "ia32-1"
291run_dump_test "ia32-2"
292run_dump_test "ia32-3"
293run_dump_test "lp64-1"
294run_dump_test "lp64-2"
295run_dump_test "lp64-3"
64d25c44
L
296run_dump_test "pr13082-1a"
297run_dump_test "pr13082-1b"
298run_dump_test "pr13082-2a"
299run_dump_test "pr13082-2b"
300run_dump_test "pr13082-3a"
301run_dump_test "pr13082-3b"
302run_dump_test "pr13082-4a"
303run_dump_test "pr13082-4b"
304run_dump_test "pr13082-5a"
305run_dump_test "pr13082-5b"
306run_dump_test "pr13082-6a"
307run_dump_test "pr13082-6b"
80d87326
L
308run_dump_test "lea1a"
309run_dump_test "lea1b"
310run_dump_test "lea1c"
311run_dump_test "lea1d"
312run_dump_test "lea1e"
313run_dump_test "lea1f"
daa67607
L
314run_dump_test "lea1g"
315run_dump_test "lea1h"
316run_dump_test "lea1i"
317run_dump_test "lea1j"
318run_dump_test "lea1k"
319run_dump_test "lea1l"
3f65f599
L
320run_dump_test "mov1a"
321run_dump_test "mov1b"
322run_dump_test "mov1c"
323run_dump_test "mov1d"
1952c5cd
L
324run_dump_test "pr17935-1"
325run_dump_test "pr17935-2"
b19a8f85 326run_dump_test "pr18160"
875b5b9d 327run_dump_test "pr18176"
adc7571d 328
56d4d7f2
L
329# Must be native with the C compiler
330if { [isnative] && [which $CC] != 0 } {
adc7571d
L
331 run_cc_link_tests {
332 {"Helper X32 DSO from x86-64 object" "" "-m64 -fPIC -g"
333 {simple.c} {} "libsimple.a"}
334 }
335
336 set convertx32 "$objcopy -O elf32-x86-64 tmpdir/simple.o tmpdir/simple-x32.o"
337 send_log "$convertx32\n"
338 set got [remote_exec host "$convertx32"]
339 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
340 send_log "$got\n"
341 fail "Convert x86-64 object to x32"
342 return
343 }
344
345 run_ld_link_tests {
346 {"X32 DSO from x86-64 object"
897aea50 347 "-shared -melf32_x86_64 tmpdir/simple-x32.o" "" "--x32"
adc7571d
L
348 {dummy.s} {{readelf {-s --wide} x86-64-x32.rd}} "x86-64-x32"}
349 }
76e7af5f
L
350
351 run_cc_link_tests [list \
352 [list \
353 "Build plt-lib.so" \
354 "-shared" \
355 "-fPIC" \
356 { plt-lib.c } \
357 {} \
358 "libplt-lib.so" \
359 ] \
360 [list \
361 "Build libplt-main1.a" \
362 "" \
363 "-fPIC" \
364 { plt-main1.c } \
365 {{readelf {-Wr} plt-main1.rd}} \
366 "libplt-main1.a" \
367 ] \
368 [list \
369 "Build libplt-main2.a" \
370 "" \
371 "-fPIC" \
372 { plt-main2.c } \
373 {{readelf {-Wr} plt-main2.rd}} \
374 "libplt-main2.a" \
375 ] \
376 [list \
377 "Build libplt-main3.a" \
378 "" \
379 "-fPIC" \
380 { plt-main3.c } \
381 {{readelf {-Wr} plt-main3.rd}} \
382 "libplt-main3.a" \
383 ] \
384 [list \
385 "Build libplt-main4.a" \
386 "" \
387 "-fPIC" \
388 { plt-main4.c } \
389 {{readelf {-Wr} plt-main4.rd}} \
390 "libplt-main4.a" \
391 ] \
dd7e64d4
L
392 [list \
393 "Build plt-main" \
394 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
395 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
396 "" \
397 { plt-main5.c } \
398 {{readelf {-Wr} plt-main.rd}} \
399 "plt-main" \
400 ] \
401 [list \
402 "Build plt-main with PIE" \
403 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
404 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
405 "-fPIC" \
406 { plt-main5.c } \
407 {{readelf {-Wr} plt-main.rd}} \
408 "plt-main" \
409 ] \
9a926d55
L
410 [list \
411 "Build copyreloc-lib.so" \
412 "-shared" \
413 "-fPIC" \
414 { copyreloc-lib.c } \
415 {} \
416 "copyreloc-lib.so" \
417 ] \
418 [list \
419 "Build copyreloc-main with PIE without -fPIE (1)" \
420 "tmpdir/copyreloc-lib.so -pie" \
421 "" \
01bbed2a 422 { copyreloc-main.S } \
9a926d55
L
423 {{readelf {-Wr} copyreloc-main1.rd}} \
424 "copyreloc-main" \
425 ] \
426 [list \
427 "Build copyreloc-main with PIE without -fPIE (2)" \
428 "tmpdir/copyreloc-lib.so -pie" \
429 "" \
01bbed2a 430 { copyreloc-main.S } \
9a926d55
L
431 {{readelf {-Wr} copyreloc-main2.rd}} \
432 "copyreloc-main" \
433 ] \
bc696fd5
L
434 [list \
435 "Build pr17689.so" \
436 "-shared" \
437 "-fPIC" \
438 { pr17689a.c } \
439 {} \
440 "pr17689.so" \
441 ] \
442 [list \
443 "Build pr17689 with PIE without -fPIE" \
444 "tmpdir/pr17689.so -pie" \
445 "" \
446 { pr17689b.S } \
447 {{readelf {-Wr} pr17689.rd}} \
448 "pr17689" \
449 ] \
9d1d54d5
L
450 [list \
451 "Build pr17827 with PIE without -fPIE" \
452 "tmpdir/pr17689.so -pie" \
453 "" \
454 { pr17689b.S } \
455 {{readelf {-Wr} pr17827.rd}} \
456 "pr17827" \
457 ] \
76e7af5f
L
458 ]
459
460 run_ld_link_exec_tests [] [list \
461 [list \
462 "Run plt-main" \
463 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
464 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
465 "" \
466 { plt-main5.c } \
467 "plt-main" \
468 "plt-main.out" \
469 ] \
ce641d0b
L
470 [list \
471 "Run plt-main with PIE" \
472 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
473 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
474 "" \
475 { plt-main5.c } \
476 "plt-main-pie" \
477 "plt-main.out" \
478 "-fPIC" \
479 ] \
9a926d55
L
480 [list \
481 "Run copyreloc-main with PIE without -fPIE" \
482 "tmpdir/copyreloc-lib.so -pie" \
483 "" \
01bbed2a 484 { copyreloc-main.S } \
9a926d55
L
485 "copyreloc-main" \
486 "copyreloc-main.out" \
487 ] \
bc696fd5
L
488 [list \
489 "Run pr17689 with PIE without -fPIE" \
490 "tmpdir/pr17689.so -pie" \
491 "" \
492 { pr17689b.S } \
493 "pr17689" \
494 "pr17689.out" \
495 ] \
76e7af5f 496 ]
dd7e64d4
L
497
498 if { [istarget "x86_64-*-linux*"] \
499 && ![istarget "x86_64-*-linux*-gnux32"]} {
500
501 run_cc_link_tests [list \
502 [list \
503 "Build plt-main with -z bndplt" \
504 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
505 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt" \
506 "" \
507 { plt-main5.c } \
508 {{objdump {-drw} plt-main-bnd.dd}} \
509 "plt-main-bnd" \
510 ] \
511 [list \
512 "Build plt-main with PIE and -z bndplt" \
513 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
514 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -pie" \
515 "-fPIC" \
516 { plt-main5.c } \
517 {{objdump {-drw} plt-main-bnd.dd}} \
518 "plt-main-pie-bnd" \
519 ] \
520 ]
521
522 run_ld_link_exec_tests [] [list \
523 [list \
524 "Run plt-main with -z bndplt" \
525 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
526 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt" \
527 "" \
528 { plt-main5.c } \
529 "plt-main-bnd" \
530 "plt-main.out" \
531 ] \
532 [list \
533 "Run plt-main with PIE and -z bndplt" \
534 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
535 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -pie" \
536 "" \
537 { plt-main5.c } \
538 "plt-main-pie-bnd" \
539 "plt-main.out" \
540 "-fPIC" \
541 ] \
542 ]
543 }
adc7571d 544}
ab7fede8
L
545
546if { ![istarget "x86_64-*-linux*"]} {
547 return
548}
549
550# Linux only tests
551run_dump_test "pr17618"
a3747075 552run_dump_test "pltgot-1"