Enable -Bsymbolic and -Bsymbolic-functions to PIE
[deliverable/binutils-gdb.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 descriptor -fpic -shared transitions"
137 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
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"}
142 {"Helper shared library" "-shared -melf_i386" ""
143 "--32" {tlslib.s} {} "libtlslib.so"}
144 {"TLS -fpic and -fno-pic exec transitions"
145 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
146 "--32" {tlsbinpic.s tlsbin.s}
147 {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
148 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
149 "tlsbin"}
150 {"TLS descriptor -fpic and -fno-pic exec transitions"
151 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info" ""
152 "--32" {tlsbindesc.s tlsbin.s}
153 {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
154 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
155 "tlsbindesc"}
156 {"TLS -fno-pic -shared"
157 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
158 "--32" {tlsnopic1.s tlsnopic2.s}
159 {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
160 {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
161 {"TLS with global dynamic and descriptors"
162 "-shared -melf_i386 --no-ld-generated-unwind-info" ""
163 "--32" {tlsgdesc.s}
164 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
165 "libtlsgdesc.so"}
166 {"TLS in debug sections" "-melf_i386" ""
167 "--32" {tlsg.s}
168 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
169 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
170 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
171 {"Reloc section order" "-shared -melf_i386 -z nocombreloc" "" "--32"
172 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
173 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
174 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
175 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
176 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
177 {"TLS GD->LE transition" "-melf_i386" ""
178 "--32" {tlsgd1.s}
179 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
180 {"TLS LD->LE transition" "-melf_i386" ""
181 "--32" {tlsld1.s}
182 {{objdump -dwr tlsld1.dd}} "tlsld1"}
183 {"TLS IE->LE transition" "-melf_i386" ""
184 "--32" {tlsie1.s}
185 {{objdump -dwr tlsie1.dd}} "tlsie1"}
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"}
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"}
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"}
198 }
199
200 # So as to avoid rewriting every last test case here in a nacl variant,
201 # we use black magic to massage the generic cases into nacl-variant cases.
202 if [istarget "*-*-nacl*"] {
203 # Change all the -melf_i386 to -melf_i386_nacl so linking can succeed.
204 regsub -all elf_i386 $i386tests elf_i386_nacl i386tests
205
206 # Same, applied to all the run_dump_test cases.
207 set options_regsub(ld) {elf_i386 elf_i386_nacl}
208
209 # The section/segment layout differs too much for the vanilla
210 # readelf output files to match. So massage the cases so that
211 # they refer to a foo-nacl.rd file instead of a foo.rd file.
212 regsub -all {([a-z0-9]+)\.rd} $i386tests {\1-nacl.rd} i386tests
213
214 # Likewise for PLTs.
215 regsub -all -- {([a-z0-9]+)\.pd} $i386tests {\1-nacl.pd} i386tests
216 }
217
218 proc iamcu_tests {} {
219 if {[istarget "*-*-nacl*"]} then {
220 return
221 }
222
223 global as
224 global srcdir
225 global subdir
226
227 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
228 unresolved "Build Intel MCU start.o"
229 return
230 }
231
232 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
233 unresolved "Build ia32 start.o"
234 return
235 }
236
237 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
238 unresolved "Build Intel MCU foo.o"
239 return
240 }
241
242 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
243 unresolved "Build ia32 foo.o"
244 return
245 }
246
247 run_dump_test "abs-iamcu"
248 run_dump_test "iamcu-1"
249 run_dump_test "iamcu-2"
250 run_dump_test "iamcu-3"
251 run_dump_test "iamcu-4"
252 }
253
254 iamcu_tests
255
256 run_ld_link_tests $i386tests
257
258 run_dump_test "abs"
259 run_dump_test "pcrel8"
260 run_dump_test "pcrel16"
261 run_dump_test "pcrel16abs"
262 run_dump_test "alloc"
263 run_dump_test "warn1"
264 run_dump_test "tlsgd2"
265 run_dump_test "tlsie2"
266 run_dump_test "tlsie3"
267 run_dump_test "tlsie4"
268 run_dump_test "tlsie5"
269 run_dump_test "hidden1"
270 run_dump_test "hidden2"
271 run_dump_test "hidden3"
272 run_dump_test "protected1"
273 run_dump_test "protected2"
274 run_dump_test "protected3"
275 run_dump_test "protected4"
276 run_dump_test "protected5"
277 run_dump_test "protected6a"
278 run_dump_test "protected6b"
279 run_dump_test "tlspie1"
280 run_dump_test "tlspie2"
281 run_dump_test "nogot1"
282 run_dump_test "nogot2"
283 run_dump_test "discarded1"
284 run_dump_test "pr12718"
285 run_dump_test "pr12921"
286 run_dump_test "pr12570a"
287 run_dump_test "pr12570b"
288 run_dump_test "lea1a"
289 run_dump_test "lea1b"
290 run_dump_test "lea1c"
291 run_dump_test "lea1d"
292 run_dump_test "lea1e"
293 run_dump_test "lea1f"
294 run_dump_test "mov1a"
295 run_dump_test "mov1b"
296 run_dump_test "mov2a"
297 run_dump_test "mov2b"
298 run_dump_test "mov3"
299 run_dump_test "branch1"
300 run_dump_test "call1"
301 run_dump_test "call2"
302 run_dump_test "call3a"
303 run_dump_test "call3b"
304 run_dump_test "call3c"
305 run_dump_test "call3d"
306 run_dump_test "call3e"
307 run_dump_test "call3f"
308 run_dump_test "call3g"
309 run_dump_test "call3h"
310 run_dump_test "jmp1"
311 run_dump_test "jmp2"
312 run_dump_test "load1"
313 run_dump_test "load1-nacl"
314 run_dump_test "load2"
315 run_dump_test "load3"
316 run_dump_test "load4a"
317 run_dump_test "load4b"
318 run_dump_test "load5a"
319 run_dump_test "load5b"
320 run_dump_test "load6"
321 run_dump_test "pr19175"
322 run_dump_test "pr19615"
323
324 if { !([istarget "i?86-*-linux*"]
325 || [istarget "i?86-*-gnu*"]
326 || [istarget "i?86-*-nacl*"]
327 || [istarget "x86_64-*-nacl*"]
328 || [istarget "x86_64-*-linux*"]) } {
329 return
330 }
331
332 run_dump_test "compressed1"
333 run_dump_test "pr12627"
334 run_dump_test "pr13302"
335 run_dump_test "pr14215"
336 run_dump_test "pr17057"
337 run_dump_test "pr17935-1"
338 run_dump_test "pr17935-2"
339 run_dump_test "pr18801"
340 run_dump_test "pr18815"
341
342 # Add $PLT_CFLAGS if PLT is expected.
343 global PLT_CFLAGS
344
345 # Must be Linux native with the C compiler
346 if { [isnative]
347 && [istarget "i?86-*-linux*"]
348 && [which $CC] != 0 } {
349 run_cc_link_tests [list \
350 [list \
351 "Build plt-lib.so" \
352 "-shared" \
353 "-fPIC" \
354 { plt-lib.c } \
355 {} \
356 "libplt-lib.so" \
357 ] \
358 [list \
359 "Build libplt-main1.a" \
360 "" \
361 "-fPIC -Wa,-mrelax-relocations=yes" \
362 { plt-main1.c } \
363 {{readelf {-Wr} plt-main1.rd}} \
364 "libplt-main1.a" \
365 ] \
366 [list \
367 "Build libplt-main2.a" \
368 "" \
369 "-fPIC -Wa,-mrelax-relocations=yes" \
370 { plt-main2.c } \
371 {{readelf {-Wr} plt-main2.rd}} \
372 "libplt-main2.a" \
373 ] \
374 [list \
375 "Build libplt-main3.a" \
376 "" \
377 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
378 { plt-main3.c } \
379 {{readelf {-Wr} plt-main3.rd}} \
380 "libplt-main3.a" \
381 ] \
382 [list \
383 "Build libplt-main4.a" \
384 "" \
385 "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
386 { plt-main4.c } \
387 {{readelf {-Wr} plt-main4.rd}} \
388 "libplt-main4.a" \
389 ] \
390 [list \
391 "Build plt-main" \
392 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
393 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
394 "" \
395 { plt-main5.c } \
396 {{readelf {-Wr} plt-main.rd}} \
397 "plt-main" \
398 ] \
399 [list \
400 "Build plt-main with PIE" \
401 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
402 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
403 "-fPIC" \
404 { plt-main5.c } \
405 {{readelf {-Wr} plt-main.rd}} \
406 "plt-main" \
407 ] \
408 [list \
409 "Build copyreloc-lib.so" \
410 "-shared" \
411 "-fPIC" \
412 { copyreloc-lib.c } \
413 {} \
414 "copyreloc-lib.so" \
415 ] \
416 [list \
417 "Build copyreloc-main with PIE and GOTOFF (1)" \
418 "tmpdir/copyreloc-lib.so -pie" \
419 "" \
420 { copyreloc-main.S } \
421 {{readelf {-Wr} copyreloc-main1.rd}} \
422 "copyreloc-main" \
423 ] \
424 [list \
425 "Build copyreloc-main with PIE and GOTOFF (2)" \
426 "tmpdir/copyreloc-lib.so -pie" \
427 "" \
428 { copyreloc-main.S } \
429 {{readelf {-Wr} copyreloc-main2.rd}} \
430 "copyreloc-main" \
431 ] \
432 [list \
433 "Build pr17689.so" \
434 "-shared" \
435 "-fPIC" \
436 { pr17689a.c } \
437 {} \
438 "pr17689.so" \
439 ] \
440 [list \
441 "Build pr17689.so with -z now" \
442 "-shared -Wl,-z,now" \
443 "-fPIC" \
444 { pr17689a.c } \
445 {{readelf {-Wr} pr17689now.rd}} \
446 "pr17689now.so" \
447 ] \
448 [list \
449 "Build pr17689ver.so" \
450 "-shared -Wl,--version-script,pr17689a.t" \
451 "-fPIC" \
452 { pr17689a.c } \
453 {} \
454 "pr17689ver.so" \
455 ] \
456 [list \
457 "Build pr17689.a" \
458 "" \
459 "" \
460 { pr17689b.S } \
461 {} \
462 "pr17689.a" \
463 ] \
464 [list \
465 "Build pr17689 with PIE and GOTOFF" \
466 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
467 "" \
468 { dummy.c } \
469 {{readelf {-Wr} pr17689.rd}} \
470 "pr17689" \
471 ] \
472 [list \
473 "Build pr17689 with PIE, -z now and GOTOFF" \
474 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
475 "" \
476 { dummy.c } \
477 {{readelf {-Wr} pr17689now.rd}} \
478 "pr17689now" \
479 ] \
480 [list \
481 "Build pr17689ver with PIE and GOTOFF" \
482 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
483 "" \
484 { dummy.c } \
485 {{readelf {-Wr} pr17689ver.rd}} \
486 "pr17689ver" \
487 ] \
488 [list \
489 "Build pr17827 with PIE and GOTOFF" \
490 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
491 "" \
492 { dummy.c } \
493 {{readelf {-Wr} pr17827.rd}} \
494 "pr17827" \
495 ] \
496 [list \
497 "Build pr18900.so" \
498 "-shared" \
499 "-fPIC" \
500 { pr18900a.c } \
501 "" \
502 "pr18900.so" \
503 ] \
504 [list \
505 "Build pr18900a" \
506 "tmpdir/pr18900.so" \
507 "" \
508 { pr18900b.c pr18900c.c } \
509 {{readelf {-Wrd} pr18900a.rd}} \
510 "pr18900a" \
511 ] \
512 [list \
513 "Build pr18900b" \
514 "tmpdir/pr18900.so" \
515 "" \
516 { pr18900b.c pr18900c.c } \
517 {{readelf {-Wrd} pr18900b.rd}} \
518 "pr18900b" \
519 ] \
520 [list \
521 "Build pr19031.so" \
522 "-shared" \
523 "-fPIC" \
524 { pr19031a.c } \
525 "" \
526 "pr19031.so" \
527 ] \
528 [list \
529 "Build got1d.so" \
530 "-shared" \
531 "" \
532 { got1d.S } \
533 "" \
534 "got1d.so" \
535 ] \
536 [list \
537 "Build gotpc1" \
538 "tmpdir/got1d.so" \
539 "-Wa,-mrelax-relocations=yes" \
540 { got1a.S got1b.c got1c.c } \
541 {{objdump {-dw} got1.dd}} \
542 "got1" \
543 ] \
544 [list \
545 "Build pr19319.so" \
546 "-shared" \
547 "" \
548 { pr19319a.S } \
549 "" \
550 "pr19319.so" \
551 ] \
552 [list \
553 "Build pr19319" \
554 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
555 "" \
556 { pr19319b.S } \
557 {{objdump {-dw} pr19319.dd}} \
558 "pr19319" \
559 ] \
560 ]
561
562 run_ld_link_exec_tests [] [list \
563 [list \
564 "Run plt-main" \
565 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
566 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
567 "" \
568 { plt-main5.c } \
569 "plt-main" \
570 "plt-main.out" \
571 ] \
572 [list \
573 "Run plt-main with PIE" \
574 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
575 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
576 "" \
577 { plt-main5.c } \
578 "plt-main-pie" \
579 "plt-main.out" \
580 "-fPIC" \
581 ] \
582 [list \
583 "Run copyreloc-main with PIE and GOTOFF" \
584 "tmpdir/copyreloc-lib.so -pie" \
585 "" \
586 { copyreloc-main.S } \
587 "copyreloc-main" \
588 "copyreloc-main.out" \
589 ] \
590 [list \
591 "Run pr17689 with PIE and GOTOFF" \
592 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
593 "" \
594 { dummy.c } \
595 "pr17689" \
596 "pr17689.out" \
597 ] \
598 [list \
599 "Run pr17689 with PIE, -z now and GOTOFF" \
600 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
601 "" \
602 { dummy.c } \
603 "pr17689now" \
604 "pr17689.out" \
605 ] \
606 [list \
607 "Run pr17689ver with PIE and GOTOFF" \
608 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
609 "" \
610 { dummy.c } \
611 "pr17689ver" \
612 "pr17689.out" \
613 ] \
614 [list \
615 "Run pr18900" \
616 "tmpdir/pr18900.so" \
617 "" \
618 { pr18900b.c pr18900c.c } \
619 "pr18900" \
620 "pr18900.out" \
621 ] \
622 [list \
623 "Run pr19031" \
624 "tmpdir/pr19031.so" \
625 "" \
626 { pr19031b.S pr19031c.c } \
627 "pr19031" \
628 "pr19031.out" \
629 ] \
630 [list \
631 "Run got1" \
632 "tmpdir/got1d.so" \
633 "" \
634 { got1a.S got1b.c got1c.c } \
635 "got1" \
636 "got1.out" \
637 ] \
638 ]
639 }
640
641 if { !([istarget "i?86-*-linux*"]
642 || [istarget "x86_64-*-linux*"]) } {
643 return
644 }
645
646 # Linux only tests
647 run_dump_test "pltgot-1"
648 run_dump_test "pltgot-2"
This page took 0.044207 seconds and 4 git commands to generate.