1 # Expect script
for ld-version tests
2 # Copyright
1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005
3 # Free Software Foundation
, Inc.
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.
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.
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
17 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
19 # Written by Eric Youngdale
(eric@andante.jic.com
)
23 # This test can only be run
if ld generates native executables.
24 if ![isnative
] then {return}
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.
29 if { ![istarget hppa
*64*-*-hpux
*] \
30 && ![istarget hppa
*-*-linux
*] \
31 && ![istarget i?
86-*-sysv4
*] \
32 && ![istarget i?
86-*-unixware
] \
33 && ![istarget i?
86-*-elf
*] \
34 && ![istarget i?
86-*-linux
*] \
35 && ![istarget ia64
-*-elf
*] \
36 && ![istarget ia64
-*-linux
*] \
37 && ![istarget m68k
-*-linux
*] \
38 && ![istarget mips
*-*-irix5
*] \
39 && ![istarget powerpc
-*-elf
*] \
40 && ![istarget powerpc
-*-linux
*] \
41 && ![istarget powerpc
-*-sysv4
*] \
42 && ![istarget sparc
*-*-elf
] \
43 && ![istarget sparc
*-*-solaris2
*] \
44 && ![istarget sparc
*-*-linux
*] \
45 && ![istarget arm
*-*-linux
*] \
46 && ![istarget mips
*-*-linux
*] \
47 && ![istarget alpha
*-*-linux
*] \
48 && ![istarget s390
*-*-linux
*] \
49 && ![istarget sh\
[34\
]*-*-linux
*] \
50 && ![istarget x86_64
-*-linux
*] } {
54 if { [istarget i?
86-*-linux
*aout
*] \
55 ||
[istarget i?
86-*-linux
*oldld
*] \
56 ||
[istarget m68k
-*-linux
*aout
*] } {
60 if { [istarget rs6000
*-*-aix
*] ||
[istarget powerpc
*-*-aix
*] } {
66 set VOBJDUMP_FLAGS
--private
-headers
67 set DOBJDUMP_FLAGS
--dynamic
-syms
68 set SOBJDUMP_FLAGS
--syms
69 set shared
"--shared --no-undefined-version"
70 set script
--version
-script
72 if [istarget mips
*-*-*] {
75 # Unfortunately
, the gcc
argument is
-fpic and the cc
argument is
76 #
-KPIC. We have to try both.
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
*] {
95 case $target_triplet in
{
96 { ia64
-*-* } { set as_options
"-x" }
97 default
{ set as_options
"" }
100 proc test_ar
{ test lib object expect
} {
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"
117 verbose
-log "$nm --print-armap $tmpdir/$lib | grep \" in \" | egrep \"VERS\\|bar\\|foo\" | sort > $tmpdir/nm.out"
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 {
121 catch
"exec $diff $tmpdir/nm.out $srcdir/$subdir/$expect" exec_output
122 set exec_output
[prune_warnings $exec_output
]
123 if [string match
"" $exec_output] then {
127 verbose
-log "$exec_output"
132 verbose
-log "$exec_output"
138 # objdump_emptysymstuff
139 # Check non
-dynamic symbols and make sure there are
none with
'@'.
141 proc objdump_emptysymstuff
{ objdump object
} {
142 global SOBJDUMP_FLAGS
143 global version_output
146 if ![info exists SOBJDUMP_FLAGS
] { set SOBJDUMP_FLAGS
"" }
148 verbose
-log "$objdump $SOBJDUMP_FLAGS $object | sed -n /\@/p"
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.
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"
165 # objdump_emptydynsymstuff
166 # Check dynamic symbols and make sure there are none with '@
'.
168 proc objdump_emptydynsymstuff { objdump object } {
169 global DOBJDUMP_FLAGS
170 global version_output
173 if ![info exists VOBJDUMP_FLAGS] { set VOBJDUMP_FLAGS "" }
175 verbose -log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p"
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.
182 } else { if [string match
"*objdump: *: not a dynamic object" $exec_output] then {
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"
193 # objdump_emptyverstuff
194 # Make sure there is no version information
196 proc objdump_emptyverstuff
{ objdump object
} {
197 global VOBJDUMP_FLAGS
198 global version_output
202 if {[which $objdump
] == 0} then {
203 perror
"$objdump does not exist"
207 if ![info exists VOBJDUMP_FLAGS
] { set VOBJDUMP_FLAGS
"" }
209 verbose
-log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
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.
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.
221 verbose -log "$exec_output"
222 verbose -log "objdump_emptyverstuff: did not expect any output from objdump"
230 # Dump non-dynamic symbol stuff and make sure that it is sane.
232 proc objdump_symstuff { objdump object expectfile } {
233 global SOBJDUMP_FLAGS
234 global version_output
238 if ![info exists SOBJDUMP_FLAGS] { set SOBJDUMP_FLAGS "" }
240 verbose -log "$objdump $SOBJDUMP_FLAGS $object | grep \@ | sort > $tmpdir/objdump.out"
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 {
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
252 if [file exists $expectfile] then {
253 set file_a [open $expectfile r]
255 perror "$expectfile doesn't exist
"
259 if [file
exists $tmpdir
/objdump.out
] then {
260 set file_b
[open $tmpdir
/objdump.out r
]
262 perror
"$tmpdir/objdump.out doesn't exist"
266 verbose
"# Diff'ing: $expectfile $tmpdir/objdump.out" 2
271 while { [gets $file_a line
] != $eof
} {
272 if [regexp
"^#.*$" $line] then {
280 while { [gets $file_b line
] != $eof
} {
281 if [regexp
"^#.*$" $line] then {
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
]
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 {
299 verbose
-log "\t$expectfile: $i: $line_a"
300 verbose
-log "\t$tmpdir/objdump.out: $i: $line_b"
306 if { [llength $list_a
] != [llength $list_b
] } {
307 verbose
-log "Line count"
311 if $differences
<1 then {
317 verbose
-log "$exec_output"
324 # objdump_dymsymstuff
325 # Dump dynamic symbol stuff and make sure that it is sane.
327 proc objdump_dynsymstuff
{ objdump object expectfile
} {
328 global DOBJDUMP_FLAGS
329 global version_output
333 if ![info exists DOBJDUMP_FLAGS
] { set DOBJDUMP_FLAGS
"" }
335 verbose
-log "$objdump $DOBJDUMP_FLAGS $object | sed -n /VERS/p\\\;/show/p | sort | uniq > $tmpdir/objdump.out"
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 {
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
347 if [file
exists $expectfile
] then {
348 set file_a
[open $expectfile r
]
350 warning
"$expectfile doesn't exist"
354 if [file
exists $tmpdir
/objdump.out
] then {
355 set file_b
[open $tmpdir
/objdump.out r
]
357 fail
"$tmpdir/objdump.out doesn't exist"
361 verbose
"# Diff'ing: $expectfile $tmpdir/objdump.out" 2
366 while { [gets $file_a line
] != $eof
} {
367 if [regexp
"^#.*$" $line] then {
375 while { [gets $file_b line
] != $eof
} {
376 if [regexp
"^#.*$" $line] then {
384 # Support empty files.
385 if { ![info exists list_a
] && ![info exists list_b
] } then {
389 for { set i
0 } { $i
< [llength $list_b
] } { incr i
} {
390 set line_b
[lindex $list_b $i
]
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"
400 verbose
"\t$expectfile: $i: $line_b" 3
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
]
408 if [regexp $line_a $line_b
] then {
409 lreplace $list_a $j $j
"CAN NOT MATCH"
414 if { $j
>= [llength $list_a
] } {
415 verbose
-log "\t$tmpdir/objdump.out: $i: $line_b"
421 if { [llength $list_a
] != [llength $list_b
] } {
422 verbose
-log "Line count"
426 if $differences
<1 then {
432 verbose
-log "$exec_output"
439 # objdump_versionstuff
440 # Dump version definitions
/references and make sure that it is sane.
442 proc objdump_versionstuff
{ objdump object expectfile
} {
443 global VOBJDUMP_FLAGS
444 global version_output
448 if {[which $objdump
] == 0} then {
449 perror
"$objdump does not exist"
453 if ![info exists VOBJDUMP_FLAGS
] { set VOBJDUMP_FLAGS
"" }
455 verbose
-log "$objdump $VOBJDUMP_FLAGS $object | sed -n /Version/,\\\$p > $tmpdir/objdump.out"
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 {
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
463 # every line in EXPECTFILE appear in the output in order.
465 set f1 [open $tmpdir/objdump.out r]
466 set f2 [open $expectfile r]
467 while { [gets $f2 l2] != -1 } {
468 if { ![regexp "^#.*$" $l2] } then {
472 while { [gets $f1 l1] != -1 } {
473 if { [string match $l2 $l1] } then {
474 if { [gets $f2 l2] == -1 } then {
482 # We reached the end of the output without seeing the line we
483 # expected. This is a test failure.
488 # Support empty expected file.
489 if [string match "" $l2] then {
493 verbose -log "Did not find \"$l2\""
494 set f1 [open $tmpdir/objdump.out r]
495 while { [gets $f1 l1] != -1 } {
499 verbose -log "$exec_output"
502 verbose -log "$exec_output"
507 proc build_binary { shared pic test source libname other mapfile verexp versymexp symexp ldargs } {
521 if ![ld_compile "$CC -S $pic $CFLAGS" $srcdir/$subdir/$source $tmpdir/$libname.s] {
526 if ![ld_assemble $as "$as_options $tmpdir/$libname.s" $tmpdir/$libname.o ] {
532 if ![string match "" $other] then {
534 set other_lib "$other_lib $tmpdir/$o"
538 if [string match "" $mapfile] then {
541 set script_arg "$script $srcdir/$subdir/$mapfile"
544 if {![ld_simple_link $ld $tmpdir/$libname.so "$shared $tmpdir/$libname.o $other_lib $script_arg $ldargs"]} {
549 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
554 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
559 if [string match "" $symexp] then {
560 if {![objdump_emptysymstuff $objdump $tmpdir/$libname.o ]} {
565 if {![objdump_symstuff $objdump $tmpdir/$libname.o $srcdir/$subdir/$symexp ]} {
575 proc build_executable { test source libname other mapfile verexp versymexp symexp } {
576 build_binary "" "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
579 proc build_vers_lib_no_pic { test source libname other mapfile verexp versymexp symexp } {
581 build_binary $shared "" $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
584 proc build_vers_lib_pic { test source libname other mapfile verexp versymexp symexp } {
587 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp ""
590 proc build_vers_lib_pic_flags { test source libname other mapfile verexp versymexp symexp ldargs } {
593 build_binary $shared $picflag $test $source $libname $other $mapfile $verexp $versymexp $symexp $ldargs
596 proc test_ldfail { test flag source execname other mapfile whyfail } {
609 if [string match "" $other] then {
612 set other_lib $tmpdir/$other
615 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
620 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
625 verbose -log "This link should fail because of $whyfail"
627 if [string match "" $mapfile] then {
630 set script_arg "-Wl,$script $srcdir/$subdir/$mapfile"
633 if {![ld_simple_link $CC $tmpdir/$execname "$tmpdir/$execname.o $other_lib $script_arg"]} {
640 proc test_asfail { test flag source execname whyfail } {
648 if ![ld_compile "$CC -S $flag $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
653 verbose -log "This assemble should fail because of $whyfail"
654 catch "exec $as -o $tmpdir/$execname.o $tmpdir/$execname.s" exec_output
655 set exec_output [prune_warnings $exec_output]
656 if [string match "" $exec_output] then {
660 verbose -log "$exec_output"
664 proc test_strip_vers_lib { test srclib libname verexp versymexp } {
673 verbose -log "cp $tmpdir/$srclib $tmpdir/$libname.so"
674 exec cp $tmpdir/$srclib $tmpdir/$libname.so
676 verbose -log "$strip $tmpdir/$libname.so"
677 catch "exec $strip $tmpdir/$libname.so" exec_output
678 if [string match "" $exec_output] then {
680 # If strip went OK, then run the usual tests on the thing to make sure that
682 if {![objdump_versionstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$verexp ]} {
687 if {![objdump_dynsymstuff $objdump $tmpdir/$libname.so $srcdir/$subdir/$versymexp ]} {
693 verbose -log "$exec_output"
701 proc build_exec { test source execname flags solibname verexp versymexp symexp } {
713 set shared "--shared --no-undefined-version"
714 set script --version-script
715 if ![ld_compile "$CC -S $CFLAGS" $srcdir/$subdir/$source $tmpdir/$execname.s] {
720 if ![ld_assemble $as "$as_options $tmpdir/$execname.s" $tmpdir/$execname.o ] {
725 if [string match "" $solibname] then {
728 set solibname_lib $tmpdir/$solibname
731 if {![ld_simple_link $CC $tmpdir/$execname "$flags $tmpdir/$execname.o $solibname_lib"]} {
736 if [string match "" $verexp] then {
738 # Make sure we get nothing back.
740 if {![objdump_emptyverstuff $objdump $tmpdir/$execname ]} {
745 if {![objdump_versionstuff $objdump $tmpdir/$execname $srcdir/$subdir/$verexp ]} {
751 if [string match "" $versymexp] then {
752 if {![objdump_emptydynsymstuff $objdump $tmpdir/$execname ]} {
757 if {![objdump_dynsymstuff $objdump $tmpdir/$execname $srcdir/$subdir/$versymexp ]} {
763 if [string match "" $symexp] then {
764 if {![objdump_emptysymstuff $objdump $tmpdir/$execname.o ]} {
769 if {![objdump_symstuff $objdump $tmpdir/$execname.o $srcdir/$subdir/$symexp ]} {
778 if [istarget x86_64-*-linux*] {
779 # x86_64 doesn't like non
-pic shared libraries
786 # Basic test
- build a library with versioned symbols.
788 build_vers_lib_pic
"vers1" vers1.c vers1 "" vers1.map vers1.ver vers1.dsym vers1.sym
792 # Test #
2 - build a library
, and link it against the library we built in step
795 build_vers_lib_pic
"vers2" vers2.c vers2 vers1.so vers2.map vers2.ver vers2.dsym ""
798 # Test #
3 - build an executable
, and link it against vers1.so.
800 build_exec
"vers3" vers3.c vers3 "" vers1.so vers3.ver vers3.dsym ""
803 # Test #
4 - Make sure a version implicitly defined in an executable
804 # causes a version node to be created. Verify this both with and without
808 # This test fails
on MIPS.
On the MIPS we must put foo in the dynamic
809 # symbol table
, which the test does not expect.
810 setup_xfail
"mips*-*-*"
811 build_exec
"vers4" vers4.c vers4 "" "" "" "" vers4.sym
813 build_exec
"vers4a" vers4.c vers4a "-export-dynamic" "" vers4a.ver vers4a.dsym vers4a.sym
817 # Try multiple definitions foo@BAR and foo@@BAR and make sure the linker
820 test_ldfail
"vers5" "" vers5.c vers5 "" "" "multiple definition of foo@VERS_1.2"
824 # Now build a test that should reference a bunch of versioned symbols.
825 # All of them should be correctly referenced.
827 build_exec
"vers6" vers6.c vers6 "" vers1.so vers6.ver vers6.dsym vers6.sym
830 # Another test to verify that something made local via
'local' is truly not
833 if [string match
"yes" $pic] then {
837 build_vers_lib_no_pic
"vers7a" vers7a.c vers7a "" vers7.map vers7a.ver vers7a.dsym vers7a.sym
839 test_ldfail
"vers7" "" vers7.c vers7 vers7a.so "" "undefined reference to hide_a"
844 # This test is designed to verify that we can pass a linker script
on the
845 # command line as
if it were a
normal .o file.
847 catch
"exec cp $srcdir/$subdir/vers8.map $tmpdir/" ignore_output
848 build_vers_lib_pic
"vers8" vers1.c vers8 vers8.map "" vers8.ver vers1.dsym vers1.sym
851 # This test tries to make sure that version references to versioned symbols
852 # don
't collide with default definitions with the same symbol.
854 build_exec "vers9" vers9.c vers9 "-export-dynamic" "" vers9.ver vers9.dsym vers9.sym
858 # Try and use a non-existant version node. The linker should fail with
861 test_ldfail "vers10" "-DDO_TEST10" vers1.c vers10 "" "vers1.map --shared" "invalid version"
864 # Try and some things the assembler should complain about.
866 test_asfail "vers11" "-DDO_TEST11" vers1.c vers11 "no @ in symver"
868 test_asfail "vers12" "-DDO_TEST12" vers1.c vers12 "extern version definition"
871 # Put a shared library in an archive library, and make sure the global
872 # archive symbol table is sane.
874 test_ar "ar with versioned solib" vers13.a vers1.so vers13.asym
877 # Strip a shared library, and make sure we didn't screw something up in there.
879 test_strip_vers_lib
"vers14" vers1.so vers14 vers1.ver vers1.dsym
883 # Build another test with some versioned symbols. Here we are going to
884 # try and override something from the library
, and we shouldn
't get
887 build_exec "vers15" vers15.c vers15 "" vers1.so vers15.ver vers15.dsym vers15.sym
890 # Test that when we override a versioned symbol from the library this
891 # symbol appears in the dynamic symbol table of the executable.
893 build_vers_lib_pic "vers16a" vers16a.c vers16a "" vers16.map vers16a.ver vers16a.dsym ""
894 build_exec "vers16" vers16.c vers16 "" vers16a.so "" vers16.dsym ""
896 # Test a weak versioned symbol.
897 build_vers_lib_pic "vers17" vers17.c vers17 "" vers17.map vers17.ver vers17.dsym ""
898 build_vers_lib_pic "vers18" vers18.c vers18 vers17.so vers18.map vers18.ver vers18.dsym vers18.sym
899 build_exec "vers19" vers19.c vers19 "-Wl,-rpath,." vers18.so vers19.ver vers19.dsym ""
901 build_vers_lib_no_pic "vers20a" vers20.c vers20a "" vers20.map vers20a.ver vers20.dsym ""
902 exec cp $tmpdir/vers20a.so $tmpdir/vers20b.so
903 build_vers_lib_no_pic "vers20" vers20.c vers20 "vers20a.so vers20b.so" vers20.map vers20.ver vers20.dsym ""
905 # Test .symver override.
906 build_vers_lib_pic "vers21" vers21.c vers21 "" vers21.map vers21.ver vers21.dsym vers21.sym
908 # Test moving default definition from one DSO to another.
909 build_vers_lib_pic "vers22a" vers22a.c vers22a "" vers22.map vers22a.ver vers22a.dsym vers22a.sym
910 build_vers_lib_pic "vers22b" vers22b.c vers22b "" vers22.map vers22b.ver vers22b.dsym ""
911 build_vers_lib_pic "vers22" vers22.c vers22 "vers22a.so vers22b.so" "" vers22.ver vers22.dsym ""
913 # Test versioned definitions in different files.
914 if [string match "yes" $pic] then {
921 build_vers_lib_no_pic "vers23a" vers23a.c vers23a "" vers23a.map vers23a.ver vers23a.dsym vers23a.sym
922 build_vers_lib_no_pic "vers23b" vers23b.c vers23b "" vers23b.map vers23b.ver vers23b.dsym ""
923 build_vers_lib_no_pic "vers23c" vers23b.c vers23c "vers23a.so" vers23b.map vers23c.ver vers23b.dsym ""
924 build_exec "vers23d" vers23.c vers23d "tmpdir/vers23a.so tmpdir/vers23c.so" "" vers23.ver vers23d.dsym ""
925 build_exec "vers23" vers23.c vers23 "tmpdir/vers23a.so tmpdir/vers23b.o tmpdir/vers23b.so" "" vers23.ver vers23.dsym ""
928 # Test .symver x,x@VERS.0
930 if [istarget sparc*-*-*] {
931 set as_pic_flags "-K PIC"
933 run_ld_link_tests [list "\"vers24a\"
934 \"-shared --version-script $srcdir/$subdir/vers24.map\"
935 \"$as_pic_flags $as_options\" {vers24a.c vers24b.c} { { readelf -Wrs vers24.rd } }
936 \"libvers24a.so\" \"-fpic\""]
937 run_ld_link_tests [list "\"vers24b\"
938 \"-shared --version-script $srcdir/$subdir/vers24.map\"
939 \"$as_pic_flags $as_options\" {vers24b.c vers24a.c} { { readelf -Wrs vers24.rd } }
940 \"libvers24b.so\" \"-fpic\""]
941 run_ld_link_tests [list "\"vers24c\"
942 \"-shared --version-script $srcdir/$subdir/vers24.map\"
943 \"$as_pic_flags $as_options\" {vers24c.c} { { readelf -Wrs vers24.rd } }
944 \"libvers24c.so\" \"-fpic\""]
946 # Test versioned definition vs. normal definition in different files.
947 if [string match "yes" $pic] then {
952 build_vers_lib_no_pic "vers25a" vers25a.c vers25a "" vers25a.map vers25a.ver vers25a.dsym ""
953 build_vers_lib_no_pic "vers25b1" vers25b.c vers25b1 "vers25a.o vers25a.so" "" vers25b.ver vers25b.dsym ""
954 build_vers_lib_no_pic "vers25b2" vers25b.c vers25b2 "vers25a.so vers25a.o" "" vers25b.ver vers25b.dsym ""
957 build_vers_lib_pic "vers26a" vers26a.c vers26a "" vers26a.map vers26a.ver vers26a.dsym ""
958 build_vers_lib_pic "vers26b1" vers26b.c vers26b1 "" "" vers26b.ver vers26b.dsym ""
959 build_vers_lib_pic "vers26b2" vers26b.c vers26b2 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
960 if [string match "yes" $pic] then {
963 build_vers_lib_no_pic "vers26b3" vers26b.c vers26b3 "vers26a.so vers26b1.so vers26a.o" "" vers26b.ver vers26b.dsym ""
966 # Test versioned definition vs. hidden definition in different files.
967 if [string match "yes" $pic] then {
978 build_vers_lib_no_pic "vers27a" vers27a.c vers27a "" vers27a.map vers27a.ver vers27a.dsym ""
979 build_vers_lib_no_pic "vers27b" vers27b.c vers27b "" "" vers27b.ver vers27b.dsym ""
980 build_vers_lib_no_pic "vers27c1" vers27c.c vers27c1 "vers27b.o vers27a.so" "" vers27c.ver vers27c.dsym ""
981 build_vers_lib_no_pic "vers27c2" vers27c.c vers27c2 "vers27a.so vers27b.o" "" vers27c.ver vers27c.dsym ""
982 build_vers_lib_pic "vers27d1" vers27d1.c vers27d1 "" vers27a.map vers27d.ver vers27d.dsym vers27d.sym
983 build_vers_lib_pic "vers27d2" vers27d2.c vers27d2 "" "" vers27b.ver vers27b.dsym ""
984 build_executable "vers27d3" vers27d3.c vers27d3 "vers27b.o vers27d2.so vers27d1.so" "" vers27b.ver vers27b.dsym ""
985 build_vers_lib_pic "vers27d4" vers27d2.c vers27d4 "vers27a.so" "" vers27d4.ver vers27d4.dsym ""
986 build_executable "vers27d5" vers27d3.c vers27d5 "vers27d4.so vers27b.o vers27a.so" "" vers27b.ver vers27b.dsym ""
989 # Test weak versioned definition vs. strong definition in different
991 build_vers_lib_pic "vers28a" vers28a.c vers28a "" "" vers28a.ver vers28a.dsym ""
992 build_vers_lib_pic "vers28b" vers28b.c vers28b "" vers28b.map vers28b.ver vers28b.dsym ""
993 build_vers_lib_pic "vers28c" vers28c.c vers28c "vers28b.so vers28a.so" "" vers28c.ver vers28c.dsym ""
994 build_vers_lib_pic_flags "vers29" vers29.c vers29 "" "" vers29.ver vers29.dsym "" "--default-symver"
996 # Test #30 - test handling of symbol names global, local and extern in the
998 build_vers_lib_pic "vers30" vers30.c vers30 "" vers30.map vers30.ver vers30.dsym ""
1000 # Test #31 -- quoted strings in version sections.
1001 build_vers_lib_pic "vers31" vers31.c vers31 "" vers31.map vers31.ver vers31.dsym ""