* bsd-uthread.c (bsd_uthread_wait): Don't try to fetch thread IDs
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfvers / vers.exp
CommitLineData
252b5132 1# Expect script for ld-version tests
aef6203b
AM
2# Copyright 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005
3# Free Software Foundation, Inc.
252b5132
RH
4#
5# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
75be928b 17# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
252b5132
RH
18#
19# Written by Eric Youngdale (eric@andante.jic.com)
20
21#
22
23# This test can only be run if ld generates native executables.
24if ![isnative] then {return}
25
26# This test can only be run on a couple of ELF platforms.
27# Square bracket expressions seem to confuse istarget.
28# This is similar to the test that is used in ld-shared, BTW.
19c7c582
AM
29if { ![istarget hppa*64*-*-hpux*] \
30 && ![istarget hppa*-*-linux*] \
31 && ![istarget i?86-*-sysv4*] \
252b5132
RH
32 && ![istarget i?86-*-unixware] \
33 && ![istarget i?86-*-elf*] \
34 && ![istarget i?86-*-linux*] \
ad995491
L
35 && ![istarget ia64-*-elf*] \
36 && ![istarget ia64-*-linux*] \
252b5132
RH
37 && ![istarget m68k-*-linux*] \
38 && ![istarget mips*-*-irix5*] \
39 && ![istarget powerpc-*-elf*] \
40 && ![istarget powerpc-*-linux*] \
41 && ![istarget powerpc-*-sysv4*] \
42 && ![istarget sparc*-*-elf] \
b33b6e45
ILT
43 && ![istarget sparc*-*-solaris2*] \
44 && ![istarget sparc*-*-linux*] \
4f38fc1c 45 && ![istarget arm*-*-linux*] \
66517a2f 46 && ![istarget mips*-*-linux*] \
9147e853
JJ
47 && ![istarget alpha*-*-linux*] \
48 && ![istarget s390*-*-linux*] \
59758b1c 49 && ![istarget sh\[34\]*-*-linux*] \
9147e853 50 && ![istarget x86_64-*-linux*] } {
252b5132
RH
51 return
52}
53
c709b096
AM
54if { [istarget i?86-*-linux*aout*] \
55 || [istarget i?86-*-linux*oldld*] \
56 || [istarget m68k-*-linux*aout*] } {
252b5132
RH
57 return
58}
59
60if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
61 return
62}
63
64set diff diff
65set tmpdir tmpdir
66set VOBJDUMP_FLAGS --private-headers
67set DOBJDUMP_FLAGS --dynamic-syms
68set SOBJDUMP_FLAGS --syms
31941635 69set shared "--shared --no-undefined-version"
252b5132
RH
70set script --version-script
71
f006af20
L
72if [istarget mips*-*-*] {
73 set picflag ""
74} else {
75 # Unfortunately, the gcc argument is -fpic and the cc argument is
76 # -KPIC. We have to try both.
77 set picflag "-fpic"
78 send_log "$CC $picflag\n"
79 verbose "$CC $picflag"
80 catch "exec $CC $picflag" exec_output
81 send_log "$exec_output\n"
82 verbose "--" "$exec_output"
83 if { [string match "*illegal option*" $exec_output] \
84 || [string match "*option ignored*" $exec_output] \
85 || [string match "*unrecognized option*" $exec_output] \
86 || [string match "*passed to ld*" $exec_output] } {
87 if [istarget *-*-sunos4*] {
88 set picflag "-pic"
89 } else {
90 set picflag "-KPIC"
91 }
92 }
93}
94
f1dab70d
JB
95case $target_triplet in {
96 { ia64-*-* } { set as_options "-x" }
97 default { set as_options "" }
98}
99
252b5132
RH
100proc test_ar { test lib object expect } {
101 global ar
102 global nm
103 global tmpdir
104 global srcdir
105 global subdir
106 global diff
107
108 verbose -log "$ar -cr $tmpdir/$lib $tmpdir/$object"
109 catch "exec $ar -cr $tmpdir/$lib $tmpdir/$object" exec_output
110 set exec_output [prune_warnings $exec_output]
111 if ![string match "" $exec_output] {
112 verbose -log "$exec_output"
113 unresolved "$test"
114 return
115 }
116
117 verbose -log "$nm --print-armap $tmpdir/$lib | grep \" in \" | egrep \"VERS\\|bar\\|foo\" | sort > $tmpdir/nm.out"
118
119 catch "exec $nm --print-armap $tmpdir/$lib | grep \\\ in\\\ | egrep VERS\\\|bar\\\|foo | sort > $tmpdir/nm.out" exec_output
120 if [string match "" $exec_output] then {
3b0f0b37 121 catch "exec $diff $tmpdir/nm.out $srcdir/$subdir/$expect" exec_output
252b5132
RH
122 set exec_output [prune_warnings $exec_output]
123 if [string match "" $exec_output] then {
124 pass $test
125 return
126 } else {
127 verbose -log "$exec_output"
128 fail "$test"
129 return
130 }
131 } else {
132 verbose -log "$exec_output"
133 fail "$test"
134 }
135}
136
137#
138# objdump_emptysymstuff
139# Check non-dynamic symbols and make sure there are none with '@'.
140#
141proc objdump_emptysymstuff { objdump object } {
142 global SOBJDUMP_FLAGS
143 global version_output
144 global diff
145
146 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
147
148 verbose -log "$objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p"
149
150 catch "exec $objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p" exec_output
151 set exec_output [prune_warnings $exec_output]
152 if [string match "" $exec_output] then {
153# We shouldn't get anything here.
154 return 1
155 } else {
156# it is not normal to come here - we have no output to compare.
157 verbose -log "$exec_output"
158 verbose -log "objdump_emptysymstuff: did not expect any output from objdump"
159 return 0
160 }
161
162}
163
164#
165# objdump_emptydynsymstuff
166# Check dynamic symbols and make sure there are none with '@'.
167#
168proc objdump_emptydynsymstuff { objdump object } {
169 global DOBJDUMP_FLAGS
170 global version_output
171 global diff
172
173 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
174
175 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p"
176
177 catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p" exec_output
178 set exec_output [prune_warnings $exec_output]
179 if [string match "" $exec_output] then {
180# We shouldn't get anything here.
181 return 1
182 } else { if [string match "*objdump: *: not a dynamic object" $exec_output] then {
183 return 1
184 } else {
185# it is not normal to come here - we have no output to compare.
186 verbose -log "$exec_output"
187 verbose -log "objdump_emptydynsymstuff: did not expect any output from objdump"
188 return 0
189 } }
190}
191
192#
193# objdump_emptyverstuff
194# Make sure there is no version information
195#
196proc objdump_emptyverstuff { objdump object } {
197 global VOBJDUMP_FLAGS
198 global version_output
199 global diff
200 global tmpdir
201
202 if {[which $objdump] == 0} then {
203 perror "$objdump does not exist"
204 return 0
205 }
206
207 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
208
209 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
210
211 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p" exec_output
212 set exec_output [prune_warnings $exec_output]
213 if [string match "" $exec_output] then {
214# it is normal to fail here - we have no output to compare.
215 return 1
216 } else { if { [string match "*libc*" $exec_output] } then {
217# this probably means that there is version information in libc, so we
218# can't really perform this test.
219 return 1
220 } else {
221 verbose -log "$exec_output"
222 verbose -log "objdump_emptyverstuff: did not expect any output from objdump"
223 return 0
224 } }
225
226}
227
228#
229# objdump_symstuff
230# Dump non-dynamic symbol stuff and make sure that it is sane.
231#
232proc objdump_symstuff { objdump object expectfile } {
233 global SOBJDUMP_FLAGS
234 global version_output
235 global diff
236 global tmpdir
237
238 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
239
240 verbose -log "$objdump $SOBJDUMP_FLAGS $object | grep \@ | sort > $tmpdir/objdump.out"
241
242 catch "exec $objdump $SOBJDUMP_FLAGS $object | grep \@ | sort > $tmpdir/objdump.out" exec_output
243 set exec_output [prune_warnings $exec_output]
244 if [string match "" $exec_output] then {
245
246# Now do a line-by-line comparison to effectively diff the darned things
247# The stuff coming from the expectfile is actually a regex, so we can
248# skip over the actual addresses and so forth. This is currently very
249# simpleminded - it expects a one-to-one correspondence in terms of line
250# numbers.
251
252 if [file exists $expectfile] then {
253 set file_a [open $expectfile r]
254 } else {
255 perror "$expectfile doesn't exist"
256 return 0
257 }
258
259 if [file exists $tmpdir/objdump.out] then {
260 set file_b [open $tmpdir/objdump.out r]
261 } else {
262 perror "$tmpdir/objdump.out doesn't exist"
263 return 0
264 }
265
266 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
267
268 set eof -1
269 set differences 0
270
271 while { [gets $file_a line] != $eof } {
272 if [regexp "^#.*$" $line] then {
273 continue
274 } else {
275 lappend list_a $line
276 }
277 }
278 close $file_a
279
280 while { [gets $file_b line] != $eof } {
281 if [regexp "^#.*$" $line] then {
282 continue
283 } else {
284 lappend list_b $line
285 }
286 }
287 close $file_b
288
289 for { set i 0 } { $i < [llength $list_a] } { incr i } {
290 set line_a [lindex $list_a $i]
291 set line_b [lindex $list_b $i]
292
293
294 verbose "\t$expectfile: $i: $line_a" 3
295 verbose "\t/tmp/objdump.out: $i: $line_b" 3
296 if [regexp $line_a $line_b] then {
297 continue
298 } else {
299 verbose -log "\t$expectfile: $i: $line_a"
300 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
301
302 return 0
303 }
304 }
305
306 if { [llength $list_a] != [llength $list_b] } {
307 verbose -log "Line count"
308 return 0
309 }
310
311 if $differences<1 then {
312 return 1
313 }
314
315 return 0
316 } else {
317 verbose -log "$exec_output"
318 return 0
319 }
320
321}
322
323#
324# objdump_dymsymstuff
325# Dump dynamic symbol stuff and make sure that it is sane.
326#
327proc objdump_dynsymstuff { objdump object expectfile } {
328 global DOBJDUMP_FLAGS
329 global version_output
330 global diff
331 global tmpdir
332
333 if ![info exists DOBJDUMP_FLAGS] { set DOBJDUMP_FLAGS "" }
334
335 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out"
336
337 catch "exec $objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out" exec_output
338 set exec_output [prune_warnings $exec_output]
339 if [string match "" $exec_output] then {
340
341# Now do a line-by-line comparison to effectively diff the darned things
342# The stuff coming from the expectfile is actually a regex, so we can
343# skip over the actual addresses and so forth. This is currently very
344# simpleminded - it expects a one-to-one correspondence in terms of line
345# numbers.
346
347 if [file exists $expectfile] then {
348 set file_a [open $expectfile r]
349 } else {
350 warning "$expectfile doesn't exist"
351 return 0
352 }
353
354 if [file exists $tmpdir/objdump.out] then {
355 set file_b [open $tmpdir/objdump.out r]
356 } else {
357 fail "$tmpdir/objdump.out doesn't exist"
358 return 0
359 }
360
361 verbose "# Diff'ing: $expectfile $tmpdir/objdump.out" 2
362
363 set eof -1
364 set differences 0
365
366 while { [gets $file_a line] != $eof } {
367 if [regexp "^#.*$" $line] then {
368 continue
369 } else {
370 lappend list_a $line
371 }
372 }
373 close $file_a
374
375 while { [gets $file_b line] != $eof } {
376 if [regexp "^#.*$" $line] then {
377 continue
378 } else {
379 lappend list_b $line
380 }
381 }
382 close $file_b
383
365f9131
L
384 # Support empty files.
385 if { ![info exists list_a] && ![info exists list_b] } then {
386 return 1
387 }
388
252b5132
RH
389 for { set i 0 } { $i < [llength $list_b] } { incr i } {
390 set line_b [lindex $list_b $i]
391
392# The tests are rigged so that we should never export a symbol with the
393# word 'hide' in it. Thus we just search for it, and bail if we find it.
394 if [regexp "hide" $line_b] then {
395 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
396
397 return 0
398 }
399
400 verbose "\t$expectfile: $i: $line_b" 3
401
402 # We can't assume that the sort is consistent across
403 # systems, so we must check each regexp. When we find a
404 # regexp, we null it out, so we don't match it twice.
405 for { set j 0 } { $j < [llength $list_a] } { incr j } {
406 set line_a [lindex $list_a $j]
407
408 if [regexp $line_a $line_b] then {
409 lreplace $list_a $j $j "CAN NOT MATCH"
410 break
411 }
412 }
413
414 if { $j >= [llength $list_a] } {
415 verbose -log "\t$tmpdir/objdump.out: $i: $line_b"
416
417 return 0
418 }
419 }
420
421 if { [llength $list_a] != [llength $list_b] } {
422 verbose -log "Line count"
423 return 0
424 }
425
426 if $differences<1 then {
427 return 1
428 }
429
430 return 0
431 } else {
432 verbose -log "$exec_output"
433 return 0
434 }
435
436}
437
438#
439# objdump_versionstuff
440# Dump version definitions/references and make sure that it is sane.
441#
442proc objdump_versionstuff { objdump object expectfile } {
443 global VOBJDUMP_FLAGS
444 global version_output
445 global diff
446 global tmpdir
447
448 if {[which $objdump] == 0} then {
449 perror "$objdump does not exist"
450 return 0
451 }
452
453 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
454
455 verbose -log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
456
457 catch "exec $objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out" exec_output
458 set exec_output [prune_warnings $exec_output]
459 if [string match "" $exec_output] then {
460
461 # It's OK if there are extra lines in the actual output; they
462 # may come from version information in libc. We require that
65864bd2 463 # every line in EXPECTFILE appear in the output in any order.
252b5132 464
252b5132 465 set f2 [open $expectfile r]
08d5f1b4
L
466 while { [gets $f2 l2] != -1 } {
467 if { ![regexp "^#.*$" $l2] } then {
65864bd2
AM
468 set f1 [open $tmpdir/objdump.out r]
469 while { [gets $f1 l1] != -1 } {
470 if { [string match $l2 $l1] } then {
471 break
472 }
473 }
474 close $f1
475
476 if { ![string match $l2 $l1] } then {
477 verbose -log "Did not find \"$l2\""
478 set f1 [open $tmpdir/objdump.out r]
479 while { [gets $f1 l1] != -1 } {
480 verbose -log $l1
481 }
252b5132
RH
482 close $f1
483 close $f2
65864bd2 484 return 0
252b5132
RH
485 }
486 }
487 }
252b5132 488 close $f2
65864bd2 489 return 1
252b5132
RH
490 } else {
491 verbose -log "$exec_output"
492 return 0
493 }
494}
495
3e3b46e5 496proc build_binary { shared pic test source libname other mapfile verexp versymexp symexp ldargs } {
252b5132
RH
497 global ld
498 global srcdir
499 global subdir
500 global exec_output
501 global host_triplet
502 global tmpdir
503 global as
f1dab70d 504 global as_options
252b5132
RH
505 global objdump
506 global CC
507 global CFLAGS
252b5132
RH
508 global script
509
f006af20 510 if ![ld_compile "$CC -S $pic $CFLAGS" $srcdir/$subdir/$source $tmpdir/$libname.s] {
252b5132
RH
511 unresolved "$test"
512 return
513 }
514
f1dab70d 515 if ![ld_assemble $as "$as_options $tmpdir/$libname.s" $tmpdir/$libname.o ] {
252b5132
RH
516 unresolved "$test"
517 return
518 }
519
67954772
L
520 set other_lib ""
521 if ![string match "" $other] then {
522 foreach o $other {
82e03011 523 set other_lib "$other_lib $tmpdir/$o"
67954772 524 }
252b5132
RH
525 }
526
527 if [string match "" $mapfile] then {
528 set script_arg ""
529 } else {
530 set script_arg "$script $srcdir/$subdir/$mapfile"
531 }
532
3e3b46e5 533 if {![ld_simple_link $ld $tmpdir/$libname.so "$shared $tmpdir/$libname.o $other_lib $script_arg $ldargs"]} {
252b5132
RH
534 fail "$test"
535 return
536 }
537
538 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
539 fail "$test"
540 return
541 }
542
543 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
544 fail "$test"
545 return
546 }
547
548 if [string match "" $symexp] then {
549 if {![objdump_emptysymstuff $objdump $tmpdir/$libname.o ]} {
550 fail "$test"
551 return
552 }
553 } else {
554 if {![objdump_symstuff $objdump $tmpdir/$libname.o $srcdir/$subdir/$symexp ]} {
555 fail "$test"
556 return
557 }
558 }
559
560 pass $test
561
562}
563
0ae911fe 564proc build_executable { test source libname other mapfile verexp versymexp symexp } {
3e3b46e5 565 build_binary "" "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
0ae911fe
L
566}
567
f006af20 568proc build_vers_lib_no_pic { test source libname other mapfile verexp versymexp symexp } {
0ae911fe 569 global shared
3e3b46e5 570 build_binary $shared "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
f006af20
L
571}
572
573proc build_vers_lib_pic { test source libname other mapfile verexp versymexp symexp } {
574 global picflag
0ae911fe 575 global shared
3e3b46e5
PB
576 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
577}
578
579proc build_vers_lib_pic_flags { test source libname other mapfile verexp versymexp symexp ldargs } {
580 global picflag
581 global shared
582 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp $ldargs
f006af20
L
583}
584
252b5132 585proc test_ldfail { test flag source execname other mapfile whyfail } {
252b5132
RH
586 global srcdir
587 global subdir
588 global exec_output
589 global host_triplet
590 global tmpdir
591 global as
f1dab70d 592 global as_options
252b5132
RH
593 global objdump
594 global CC
595 global CFLAGS
596 global script
597
598 if [string match "" $other] then {
599 set other_lib ""
600 } else {
601 set other_lib $tmpdir/$other
602 }
603
604 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
605 unresolved "$test"
606 return
607 }
608
f1dab70d 609 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
252b5132
RH
610 unresolved "$test"
611 return
612 }
613
614 verbose -log "This link should fail because of $whyfail"
615
616 if [string match "" $mapfile] then {
617 set script_arg ""
618 } else {
9e75165d 619 set script_arg "-Wl,$script $srcdir/$subdir/$mapfile"
252b5132
RH
620 }
621
b765d4e3 622 if {![ld_simple_link $CC $tmpdir/$execname "$tmpdir/$execname.o $other_lib $script_arg"]} {
252b5132
RH
623 pass "$test"
624 return
625 }
626 fail "$test"
627}
628
629proc test_asfail { test flag source execname whyfail } {
630 global srcdir
631 global subdir
632 global tmpdir
633 global as
634 global CC
635 global CFLAGS
636
637 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
638 unresolved "$test"
639 return
640 }
641
642 verbose -log "This assemble should fail because of $whyfail"
643 catch "exec $as -o $tmpdir/$execname.o $tmpdir/$execname.s" exec_output
644 set exec_output [prune_warnings $exec_output]
645 if [string match "" $exec_output] then {
646 fail "$test"
647 return
648 }
649 verbose -log "$exec_output"
650 pass "$test"
651}
652
653proc test_strip_vers_lib { test srclib libname verexp versymexp } {
654 global strip
655 global srcdir
656 global subdir
657 global exec_output
658 global host_triplet
659 global tmpdir
660 global objdump
661
662 verbose -log "cp $tmpdir/$srclib $tmpdir/$libname.so"
663 exec cp $tmpdir/$srclib $tmpdir/$libname.so
664
665 verbose -log "$strip $tmpdir/$libname.so"
666 catch "exec $strip $tmpdir/$libname.so" exec_output
667 if [string match "" $exec_output] then {
668
669# If strip went OK, then run the usual tests on the thing to make sure that
670# it is sane.
671 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
672 fail "$test"
673 return
674 }
675
676 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
677 fail "$test"
678 return
679 }
680
681 } else {
682 verbose -log "$exec_output"
683 fail "$test"
684 return
685 }
686 pass $test
687}
688
689
690proc build_exec { test source execname flags solibname verexp versymexp symexp } {
252b5132
RH
691 global srcdir
692 global subdir
693 global exec_output
694 global host_triplet
695 global tmpdir
696 global as
f1dab70d 697 global as_options
252b5132
RH
698 global objdump
699 global CC
700 global CFLAGS
701
31941635 702 set shared "--shared --no-undefined-version"
252b5132
RH
703 set script --version-script
704 if ![ld_compile "$CC -S $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
705 unresolved "$test"
706 return
707 }
708
f1dab70d 709 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
252b5132
RH
710 unresolved "$test"
711 return
712 }
713
714 if [string match "" $solibname] then {
715 set solibname_lib ""
716 } else {
717 set solibname_lib $tmpdir/$solibname
718 }
719
b765d4e3 720 if {![ld_simple_link $CC $tmpdir/$execname "$flags $tmpdir/$execname.o $solibname_lib"]} {
252b5132
RH
721 fail "$test"
722 return
723 }
724
725 if [string match "" $verexp] then {
726#
727# Make sure we get nothing back.
728#
729 if {![objdump_emptyverstuff $objdump $tmpdir/$execname ]} {
730 fail "$test"
731 return
732 }
733 } else {
734 if {![objdump_versionstuff $objdump $tmpdir/$execname $srcdir/$subdir/$verexp ]} {
735 fail "$test"
736 return
737 }
738 }
739
740 if [string match "" $versymexp] then {
741 if {![objdump_emptydynsymstuff $objdump $tmpdir/$execname ]} {
742 fail "$test"
743 return
744 }
745 } else {
746 if {![objdump_dynsymstuff $objdump $tmpdir/$execname $srcdir/$subdir/$versymexp ]} {
747 fail "$test"
748 return
749 }
750 }
751
752 if [string match "" $symexp] then {
753 if {![objdump_emptysymstuff $objdump $tmpdir/$execname.o ]} {
754 fail "$test"
755 return
756 }
757 } else {
758 if {![objdump_symstuff $objdump $tmpdir/$execname.o $srcdir/$subdir/$symexp ]} {
759 fail "$test"
760 return
761 }
762 }
763
764 pass $test
765}
766
35d437df
L
767if [istarget x86_64-*-linux*] {
768 # x86_64 doesn't like non-pic shared libraries
769 set pic "yes"
770} else {
771 set pic "no"
772}
252b5132
RH
773
774#
775# Basic test - build a library with versioned symbols.
776#
35d437df 777build_vers_lib_pic "vers1" vers1.c vers1 "" vers1.map vers1.ver vers1.dsym vers1.sym
252b5132
RH
778
779
780#
781# Test #2 - build a library, and link it against the library we built in step
782# 1.
783#
35d437df 784build_vers_lib_pic "vers2" vers2.c vers2 vers1.so vers2.map vers2.ver vers2.dsym ""
252b5132
RH
785
786#
787# Test #3 - build an executable, and link it against vers1.so.
788#
789build_exec "vers3" vers3.c vers3 "" vers1.so vers3.ver vers3.dsym ""
790
791#
792# Test #4 - Make sure a version implicitly defined in an executable
793# causes a version node to be created. Verify this both with and without
794# --export-dynamic.
795#
796
797# This test fails on MIPS. On the MIPS we must put foo in the dynamic
798# symbol table, which the test does not expect.
799setup_xfail "mips*-*-*"
800build_exec "vers4" vers4.c vers4 "" "" "" "" vers4.sym
801
802build_exec "vers4a" vers4.c vers4a "-export-dynamic" "" vers4a.ver vers4a.dsym vers4a.sym
803
804
805#
806# Try multiple definitions foo@BAR and foo@@BAR and make sure the linker
807# complains.
808#
809test_ldfail "vers5" "" vers5.c vers5 "" "" "multiple definition of foo@VERS_1.2"
810
811#
812#
813# Now build a test that should reference a bunch of versioned symbols.
814# All of them should be correctly referenced.
815#
816build_exec "vers6" vers6.c vers6 "" vers1.so vers6.ver vers6.dsym vers6.sym
817
818#
819# Another test to verify that something made local via 'local' is truly not
820# accessible.
821#
da54898d
L
822if [string match "yes" $pic] then {
823 xfail "vers7a"
824 xfail "vers7"
825} else {
826 build_vers_lib_no_pic "vers7a" vers7a.c vers7a "" vers7.map vers7a.ver vers7a.dsym vers7a.sym
252b5132 827
da54898d
L
828 test_ldfail "vers7" "" vers7.c vers7 vers7a.so "" "undefined reference to hide_a"
829}
252b5132
RH
830
831
832#
833# This test is designed to verify that we can pass a linker script on the
834# command line as if it were a normal .o file.
835#
836catch "exec cp $srcdir/$subdir/vers8.map $tmpdir/" ignore_output
35d437df 837build_vers_lib_pic "vers8" vers1.c vers8 vers8.map "" vers8.ver vers1.dsym vers1.sym
252b5132
RH
838
839#
840# This test tries to make sure that version references to versioned symbols
841# don't collide with default definitions with the same symbol.
842#
843build_exec "vers9" vers9.c vers9 "-export-dynamic" "" vers9.ver vers9.dsym vers9.sym
844
845
846#
847# Try and use a non-existant version node. The linker should fail with
848# an error message.
849#
850test_ldfail "vers10" "-DDO_TEST10" vers1.c vers10 "" "vers1.map --shared" "invalid version"
851
852#
853# Try and some things the assembler should complain about.
854#
855test_asfail "vers11" "-DDO_TEST11" vers1.c vers11 "no @ in symver"
856
857test_asfail "vers12" "-DDO_TEST12" vers1.c vers12 "extern version definition"
858
859#
860# Put a shared library in an archive library, and make sure the global
861# archive symbol table is sane.
862#
863test_ar "ar with versioned solib" vers13.a vers1.so vers13.asym
864
865#
866# Strip a shared library, and make sure we didn't screw something up in there.
867#
868test_strip_vers_lib "vers14" vers1.so vers14 vers1.ver vers1.dsym
869
870
871#
872# Build another test with some versioned symbols. Here we are going to
873# try and override something from the library, and we shouldn't get
874# any errors.
875#
876build_exec "vers15" vers15.c vers15 "" vers1.so vers15.ver vers15.dsym vers15.sym
877
878#
879# Test that when we override a versioned symbol from the library this
880# symbol appears in the dynamic symbol table of the executable.
881#
35d437df 882build_vers_lib_pic "vers16a" vers16a.c vers16a "" vers16.map vers16a.ver vers16a.dsym ""
252b5132 883build_exec "vers16" vers16.c vers16 "" vers16a.so "" vers16.dsym ""
f0489494
ILT
884
885# Test a weak versioned symbol.
35d437df
L
886build_vers_lib_pic "vers17" vers17.c vers17 "" vers17.map vers17.ver vers17.dsym ""
887build_vers_lib_pic "vers18" vers18.c vers18 vers17.so vers18.map vers18.ver vers18.dsym vers18.sym
b765d4e3 888build_exec "vers19" vers19.c vers19 "-Wl,-rpath,." vers18.so vers19.ver vers19.dsym ""
67954772 889
f006af20 890build_vers_lib_no_pic "vers20a" vers20.c vers20a "" vers20.map vers20a.ver vers20.dsym ""
67954772 891exec cp $tmpdir/vers20a.so $tmpdir/vers20b.so
f006af20 892build_vers_lib_no_pic "vers20" vers20.c vers20 "vers20a.so vers20b.so" vers20.map vers20.ver vers20.dsym ""
b42d8061
L
893
894# Test .symver override.
35d437df 895build_vers_lib_pic "vers21" vers21.c vers21 "" vers21.map vers21.ver vers21.dsym vers21.sym
b16100ad
L
896
897# Test moving default definition from one DSO to another.
35d437df
L
898build_vers_lib_pic "vers22a" vers22a.c vers22a "" vers22.map vers22a.ver vers22a.dsym vers22a.sym
899build_vers_lib_pic "vers22b" vers22b.c vers22b "" vers22.map vers22b.ver vers22b.dsym ""
900build_vers_lib_pic "vers22" vers22.c vers22 "vers22a.so vers22b.so" "" vers22.ver vers22.dsym ""
9c092167
L
901
902# Test versioned definitions in different files.
da54898d
L
903if [string match "yes" $pic] then {
904 xfail "vers23a"
905 xfail "vers23b"
906 xfail "vers23c"
907 xfail "vers23d"
908 xfail "vers23"
909} else {
910 build_vers_lib_no_pic "vers23a" vers23a.c vers23a "" vers23a.map vers23a.ver vers23a.dsym vers23a.sym
911 build_vers_lib_no_pic "vers23b" vers23b.c vers23b "" vers23b.map vers23b.ver vers23b.dsym ""
912 build_vers_lib_no_pic "vers23c" vers23b.c vers23c "vers23a.so" vers23b.map vers23c.ver vers23b.dsym ""
913 build_exec "vers23d" vers23.c vers23d "tmpdir/vers23a.so tmpdir/vers23c.so" "" vers23.ver vers23d.dsym ""
914 build_exec "vers23" vers23.c vers23 "tmpdir/vers23a.so tmpdir/vers23b.o tmpdir/vers23b.so" "" vers23.ver vers23.dsym ""
915}
9147e853
JJ
916
917# Test .symver x,x@VERS.0
918set as_pic_flags ""
919if [istarget sparc*-*-*] {
920 set as_pic_flags "-K PIC"
921}
922run_ld_link_tests [list "\"vers24a\"
923 \"-shared --version-script $srcdir/$subdir/vers24.map\"
f1dab70d 924 \"$as_pic_flags $as_options\" {vers24a.c vers24b.c} { { readelf -Wrs vers24.rd } }
9147e853
JJ
925 \"libvers24a.so\" \"-fpic\""]
926run_ld_link_tests [list "\"vers24b\"
927 \"-shared --version-script $srcdir/$subdir/vers24.map\"
f1dab70d 928 \"$as_pic_flags $as_options\" {vers24b.c vers24a.c} { { readelf -Wrs vers24.rd } }
9147e853
JJ
929 \"libvers24b.so\" \"-fpic\""]
930run_ld_link_tests [list "\"vers24c\"
931 \"-shared --version-script $srcdir/$subdir/vers24.map\"
f1dab70d 932 \"$as_pic_flags $as_options\" {vers24c.c} { { readelf -Wrs vers24.rd } }
9147e853 933 \"libvers24c.so\" \"-fpic\""]
365f9131
L
934
935# Test versioned definition vs. normal definition in different files.
da54898d
L
936if [string match "yes" $pic] then {
937 xfail "vers25a"
938 xfail "vers25b1"
939 xfail "vers25b2"
940} else {
941 build_vers_lib_no_pic "vers25a" vers25a.c vers25a "" vers25a.map vers25a.ver vers25a.dsym ""
942 build_vers_lib_no_pic "vers25b1" vers25b.c vers25b1 "vers25a.o vers25a.so" "" vers25b.ver vers25b.dsym ""
943 build_vers_lib_no_pic "vers25b2" vers25b.c vers25b2 "vers25a.so vers25a.o" "" vers25b.ver vers25b.dsym ""
944}
945
f006af20
L
946build_vers_lib_pic "vers26a" vers26a.c vers26a "" vers26a.map vers26a.ver vers26a.dsym ""
947build_vers_lib_pic "vers26b1" vers26b.c vers26b1 "" "" vers26b.ver vers26b.dsym ""
948build_vers_lib_pic "vers26b2" vers26b.c vers26b2 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
35d437df 949if [string match "yes" $pic] then {
fcd06cfe
AJ
950 xfail "vers26b3"
951} else {
952 build_vers_lib_no_pic "vers26b3" vers26b.c vers26b3 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
953}
95aa61ce
L
954
955# Test versioned definition vs. hidden definition in different files.
da54898d
L
956if [string match "yes" $pic] then {
957 xfail "vers27a"
958 xfail "vers27b"
959 xfail "vers27c1"
960 xfail "vers27c2"
961 xfail "vers27d1"
962 xfail "vers27d2"
963 xfail "vers27d3"
964 xfail "vers27d4"
965 xfail "vers27d5"
966} else {
967 build_vers_lib_no_pic "vers27a" vers27a.c vers27a "" vers27a.map vers27a.ver vers27a.dsym ""
968 build_vers_lib_no_pic "vers27b" vers27b.c vers27b "" "" vers27b.ver vers27b.dsym ""
969 build_vers_lib_no_pic "vers27c1" vers27c.c vers27c1 "vers27b.o vers27a.so" "" vers27c.ver vers27c.dsym ""
970 build_vers_lib_no_pic "vers27c2" vers27c.c vers27c2 "vers27a.so vers27b.o" "" vers27c.ver vers27c.dsym ""
971 build_vers_lib_pic "vers27d1" vers27d1.c vers27d1 "" vers27a.map vers27d.ver vers27d.dsym vers27d.sym
972 build_vers_lib_pic "vers27d2" vers27d2.c vers27d2 "" "" vers27b.ver vers27b.dsym ""
973 build_executable "vers27d3" vers27d3.c vers27d3 "vers27b.o vers27d2.so vers27d1.so" "" vers27b.ver vers27b.dsym ""
974 build_vers_lib_pic "vers27d4" vers27d2.c vers27d4 "vers27a.so" "" vers27d4.ver vers27d4.dsym ""
975 build_executable "vers27d5" vers27d3.c vers27d5 "vers27d4.so vers27b.o vers27a.so" "" vers27b.ver vers27b.dsym ""
976}
d400d2a6
L
977
978# Test weak versioned definition vs. strong definition in different
979# files.
980build_vers_lib_pic "vers28a" vers28a.c vers28a "" "" vers28a.ver vers28a.dsym ""
981build_vers_lib_pic "vers28b" vers28b.c vers28b "" vers28b.map vers28b.ver vers28b.dsym ""
982build_vers_lib_pic "vers28c" vers28c.c vers28c "vers28b.so vers28a.so" "" vers28c.ver vers28c.dsym ""
3e3b46e5 983build_vers_lib_pic_flags "vers29" vers29.c vers29 "" "" vers29.ver vers29.dsym "" "--default-symver"
96f8ade5
JJ
984
985# Test #30 - test handling of symbol names global, local and extern in the
986# version script.
987build_vers_lib_pic "vers30" vers30.c vers30 "" vers30.map vers30.ver vers30.dsym ""
86043bbb
MM
988
989# Test #31 -- quoted strings in version sections.
990build_vers_lib_pic "vers31" vers31.c vers31 "" vers31.map vers31.ver vers31.dsym ""
This page took 0.34708 seconds and 4 git commands to generate.