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