2001-06-06 H.J. Lu <hjl@gnu.org>
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfvsb / elfvsb.exp
1 # Expect script for ld-visibility tests
2 # Copyright 2000, 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 Ian Lance Taylor (ian@cygnus.com)
19 # and H.J. Lu (hjl@gnu.org)
20 #
21
22 # Make sure that ld can generate ELF shared libraries with visibility.
23
24 # This test can only be run if ld generates native executables.
25 if ![isnative] then {return}
26
27 # This test can only be run on a couple of ELF platforms.
28 # Square bracket expressions seem to confuse istarget.
29 if { ![istarget i?86-*-linux*] \
30 && ![istarget ia64-*-linux*] \
31 && ![istarget m68k-*-linux*] \
32 && ![istarget mips*-*-linux*] \
33 && ![istarget powerpc-*-linux*] \
34 && ![istarget arm*-*-linux*] \
35 && ![istarget alpha*-*-linux*] \
36 && ![istarget sparc*-*-linux*] } {
37 return
38 }
39
40 if { [istarget *-*-linux*aout*] \
41 || [istarget *-*-linux*oldld*] } {
42 return
43 }
44
45 set tmpdir tmpdir
46 set SHCFLAG ""
47
48 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
49
50 # AIX shared libraries do not seem to support useful features,
51 # like overriding the shared library function or letting the
52 # shared library refer to objects defined in the main program. We
53 # avoid testing those features.
54 set SHCFLAG "-DXCOFF_TEST"
55
56 # The AIX 3.2.5 loader appears to randomly fail when loading
57 # shared libraries from NSF mounted partitions, so we avoid any
58 # potential problems by using a local directory.
59 catch {exec /bin/sh -c "echo $$"} pid
60 set tmpdir /usr/tmp/ld.$pid
61 catch "exec mkdir $tmpdir" exec_status
62
63 # On AIX, we need to explicitly export the symbols the shared
64 # library is going to provide, and need.
65 set file [open $tmpdir/xcoff.exp w]
66 puts $file shlibvar1
67 puts $file shlibvar2
68 puts $file shlib_shlibvar1
69 puts $file shlib_shlibvar2
70 puts $file shlib_shlibcall
71 puts $file shlib_shlibcalled
72 puts $file shlib_checkfunptr1
73 puts $file shlib_getfunptr1
74 puts $file shlib_check
75 close $file
76 }
77
78 set support_protected "no"
79
80 if [istarget *-*-linux*] {
81 if [ld_compile "$CC -g $CFLAGS -DPROTECTED_CHECK" $srcdir/$subdir/main.c $tmpdir/main.o] {
82 if [ld_link $ld $tmpdir/main "$tmpdir/main.o"] {
83 catch "exec $tmpdir/main" support_protected
84 }
85 }
86 }
87
88 # The test procedure.
89 proc visibility_test { visibility progname testname main sh1 sh2 dat args } {
90 global ld
91 global srcdir
92 global subdir
93 global exec_output
94 global link_output
95 global host_triplet
96 global tmpdir
97
98 if [llength $args] { set shldflags [lindex $args 0] } else { set shldflags "" }
99
100 # Build the shared library.
101 # On AIX, we need to use an export file.
102 set shared -shared
103 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
104 set shared "-bM:SRE -bE:$tmpdir/xcoff.exp"
105 }
106 if {![ld_simple_link $ld $tmpdir/$progname.so "$shared $shldflags $tmpdir/$sh1 $tmpdir/$sh2"]} {
107 if { [ string match $visibility "hidden_undef" ]
108 && [regexp ".*/sh1.c.*: undefined reference to \`visibility\'" $link_output]
109 && [regexp ".*/sh1.c.*: undefined reference to \`visibility_var\'" $link_output] } {
110 pass "$testname"
111 } else { if { [ string match $visibility "protected_undef" ]
112 && [regexp ".*/sh1.c.*: undefined reference to \`visibility\'" $link_output]
113 && [regexp ".*/sh1.c.*: undefined reference to \`visibility_var\'" $link_output] } {
114 pass "$testname"
115 } else {
116 fail "$testname"
117 }}
118 return
119 }
120
121 # Link against the shared library. Use -rpath so that the
122 # dynamic linker can locate the shared library at runtime.
123 # On AIX, we must include /lib in -rpath, as otherwise the loader
124 # can not find -lc.
125 set rpath $tmpdir
126 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
127 set rpath /lib:$tmpdir
128 }
129 if ![ld_link $ld $tmpdir/$progname "-rpath $rpath $tmpdir/$main $tmpdir/$progname.so"] {
130 if { [ string match $visibility "hidden" ]
131 && [regexp ".*/main.c.*: undefined reference to \`visibility\'" $link_output]
132 && [regexp ".*/main.c.*: undefined reference to \`visibility_var\'" $link_output] } {
133 pass "$testname"
134 } else { if { [ string match $visibility "hidden_undef_def" ]
135 && [regexp ".*/main.c.*: undefined reference to \`visibility\'" $link_output]
136 && [regexp ".*/main.c.*: undefined reference to \`visibility_var\'" $link_output] } {
137 pass "$testname"
138 } else {
139 fail "$testname"
140 }}
141 return
142 }
143
144 if { [ string match $visibility "hidden" ]
145 || [ string match $visibility "hidden_undef" ]
146 || [ string match $visibility "protected_undef" ] } {
147 fail "$testname"
148 }
149
150 # Run the resulting program
151 send_log "$tmpdir/$progname >$tmpdir/$progname.out\n"
152 verbose "$tmpdir/$progname >$tmpdir/$progname.out"
153 catch "exec $tmpdir/$progname >$tmpdir/$progname.out" exec_output
154 if ![string match "" $exec_output] then {
155 send_log "$exec_output\n"
156 verbose "$exec_output"
157 fail "$testname"
158 return
159 }
160
161 send_log "diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat\n"
162 verbose "diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat"
163 catch "exec diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat" exec_output
164 set exec_output [prune_warnings $exec_output]
165
166 if {![string match "" $exec_output]} then {
167 send_log "$exec_output\n"
168 verbose "$exec_output"
169 fail "$testname"
170 return
171 }
172
173 pass "$testname"
174 }
175
176 proc visibility_run {visibility} {
177 global CC
178 global CFLAGS
179 global SHCFLAG
180 global srcdir
181 global subdir
182 global tmpdir
183 global picflag
184 global target_triplet
185 global support_protected
186
187 if [ string match $visibility "hidden" ] {
188 set VSBCFLAG "-DHIDDEN_TEST"
189 } else { if [ string match $visibility "hidden_normal" ] {
190 set VSBCFLAG "-DHIDDEN_NORMAL_TEST"
191 } else { if [ string match $visibility "hidden_undef" ] {
192 set VSBCFLAG "-DHIDDEN_UNDEF_TEST"
193 } else { if [ string match $visibility "hidden_undef_def" ] {
194 set VSBCFLAG "-DHIDDEN_UNDEF_TEST -DDSO_DEFINE_TEST"
195 } else { if [ string match $visibility "hidden_weak" ] {
196 set VSBCFLAG "-DHIDDEN_WEAK_TEST"
197 } else { if [ string match $visibility "protected" ] {
198 set VSBCFLAG "-DPROTECTED_TEST"
199 } else { if [ string match $visibility "protected_undef" ] {
200 set VSBCFLAG "-DPROTECTED_UNDEF_TEST"
201 } else { if [ string match $visibility "protected_undef_def" ] {
202 set VSBCFLAG "-DPROTECTED_UNDEF_TEST -DDSO_DEFINE_TEST"
203 } else { if [ string match $visibility "protected_weak" ] {
204 set VSBCFLAG "-DPROTECTED_WEAK_TEST"
205 } else {
206 set VSBCFLAG ""
207 }}}}}}}}}
208
209 # Compile the main program.
210 if ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG" $srcdir/$subdir/main.c $tmpdir/mainnp.o] {
211 unresolved "visibility ($visibility) (non PIC)"
212 unresolved "visibility ($visibility)"
213 } else {
214 # The shared library is composed of two files. First compile them
215 # without using -fpic. That should work on an ELF system,
216 # although it will be less efficient because the dynamic linker
217 # will need to do more relocation work. However, note that not
218 # using -fpic will cause some of the tests to return different
219 # results.
220 if { ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG" $srcdir/$subdir/sh1.c $tmpdir/sh1np.o]
221 || ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG" $srcdir/$subdir/sh2.c $tmpdir/sh2np.o] } {
222 unresolved "visibility ($visibility) (non PIC)"
223 } else { if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
224 visibility_test $visibility vnp "visibility ($visibility) (non PIC)" mainnp.o sh1np.o sh2np.o xcoff
225 } else {
226 # SunOS non PIC shared libraries don't permit some cases of
227 # overriding.
228 if { [ string match $visibility "protected" ]
229 || [ string match $visibility "protected_undef_def" ] } {
230 if [ string match $support_protected "no" ] {
231 setup_xfail $target_triplet
232 }
233 } else {
234 setup_xfail "*-*-sunos4*"
235 }
236 if { [ string match $visibility "hidden_weak" ]
237 || [ string match $visibility "protected_weak" ] } {
238 setup_xfail "powerpc-*-linux*"
239 }
240 if { ![ string match $visibility "hidden_undef" ]
241 && ![ string match $visibility "protected_undef" ] } {
242 setup_xfail "ia64-*-linux*"
243 }
244 visibility_test $visibility vnp "visibility ($visibility) (non PIC)" mainnp.o sh1np.o sh2np.o elfvsb
245
246 # Test ELF shared library relocations with a non-zero load
247 # address for the library. Near as I can tell, the R_*_RELATIVE
248 # relocations for various targets are broken in the case where
249 # the load address is not zero (which is the default).
250 if { [ string match $visibility "protected" ]
251 || [ string match $visibility "protected_undef_def" ] } {
252 if [ string match $support_protected "no" ] {
253 setup_xfail $target_triplet
254 }
255 } else {
256 setup_xfail "*-*-sunos4*"
257 setup_xfail "*-*-linux*libc1"
258 }
259 if { [ string match $visibility "hidden_normal" ]
260 || [ string match $visibility "hidden_weak" ]
261 || [ string match $visibility "protected" ]
262 || [ string match $visibility "protected_undef_def" ]
263 || [ string match $visibility "protected_weak" ]
264 || [ string match $visibility "normal" ] } {
265 setup_xfail "powerpc-*-linux*"
266 }
267 if { ![ string match $visibility "hidden_undef" ]
268 && ![ string match $visibility "protected_undef" ] } {
269 setup_xfail "ia64-*-linux*"
270 setup_xfail "mips*-*-linux*"
271 }
272 visibility_test $visibility vnp "visibility ($visibility) (non PIC, load offset)" \
273 mainnp.o sh1np.o sh2np.o elfvsb \
274 "-T $srcdir/$subdir/elf-offset.ld"
275 } }
276
277 # Now compile the code using -fpic.
278
279 if { ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG $picflag" $srcdir/$subdir/sh1.c $tmpdir/sh1p.o]
280 || ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG $picflag" $srcdir/$subdir/sh2.c $tmpdir/sh2p.o] } {
281 unresolved "visibility ($visibility)"
282 } else {
283 if { [ string match $visibility "protected" ]
284 || [ string match $visibility "protected_undef_def" ] } {
285 if [ string match $support_protected "no" ] {
286 setup_xfail $target_triplet
287 }
288 }
289 # SunOS can not compare function pointers correctly
290 if [istarget "*-*-sunos4*"] {
291 visibility_test $visibility vp "visibility ($visibility)" mainnp.o sh1p.o sh2p.o sun4
292 } else { if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
293 visibility_test $visibility vp "visibility ($visibility)" mainnp.o sh1p.o sh2p.o xcoff
294 } else {
295 visibility_test $visibility vp "visibility ($visibility)" mainnp.o sh1p.o sh2p.o elfvsb
296 } }
297 }
298 }
299
300 # Now do the same tests again, but this time compile main.c PIC.
301 if ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG $picflag" $srcdir/$subdir/main.c $tmpdir/mainp.o] {
302 unresolved "visibility ($visibility) (PIC main, non PIC so)"
303 unresolved "visibility ($visibility) (PIC main)"
304 } else {
305 if { [file exists $tmpdir/sh1np.o ] && [ file exists $tmpdir/sh2np.o ] } {
306 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
307 visibility_test $visibility vmpnp "visibility ($visibility) (PIC main, non PIC so)" mainp.o sh1np.o sh2np.o xcoff
308 } else {
309 # SunOS non PIC shared libraries don't permit some cases of
310 # overriding.
311 if { [ string match $visibility "protected" ]
312 || [ string match $visibility "protected_undef_def" ] } {
313 if [ string match $support_protected "no" ] {
314 setup_xfail $target_triplet
315 }
316 } else {
317 setup_xfail "*-*-sunos4*"
318 }
319 if { [ string match $visibility "hidden_weak" ]
320 || [ string match $visibility "protected_weak" ] } {
321 setup_xfail "powerpc-*-linux*"
322 }
323 if { ![ string match $visibility "hidden_undef" ]
324 && ![ string match $visibility "protected_undef" ] } {
325 setup_xfail "ia64-*-linux*"
326 }
327 visibility_test $visibility vmpnp "visibility ($visibility) (PIC main, non PIC so)" mainp.o sh1np.o sh2np.o elfvsb
328 }
329 } else {
330 unresolved "visibility (PIC main, non PIC so)"
331 }
332
333 if { [file exists $tmpdir/sh1p.o ] && [ file exists $tmpdir/sh2p.o ] } {
334 if { [ string match $visibility "protected" ]
335 || [ string match $visibility "protected_undef_def" ] } {
336 if [ string match $support_protected "no" ] {
337 setup_xfail $target_triplet
338 }
339 }
340 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
341 visibility_test $visibility vmpp "visibility ($visibility) (PIC main)" mainp.o sh1p.o sh2p.o xcoff
342 } else {
343 visibility_test $visibility vmpp "visibility ($visibility) (PIC main)" mainp.o sh1p.o sh2p.o elfvsb
344 }
345 } else {
346 unresolved "visibility ($visibility) (PIC main)"
347 }
348 }
349 }
350
351 if [istarget mips*-*-*] {
352 set picflag ""
353 } else {
354 # Unfortunately, the gcc argument is -fpic and the cc argument is
355 # -KPIC. We have to try both.
356 set picflag "-fpic"
357 send_log "$CC $picflag\n"
358 verbose "$CC $picflag"
359 catch "exec $CC $picflag" exec_output
360 send_log "$exec_output\n"
361 verbose "--" "$exec_output"
362 if { [string match "*illegal option*" $exec_output] \
363 || [string match "*option ignored*" $exec_output] \
364 || [string match "*unrecognized option*" $exec_output] \
365 || [string match "*passed to ld*" $exec_output] } {
366 if [istarget *-*-sunos4*] {
367 set picflag "-pic"
368 } else {
369 set picflag "-KPIC"
370 }
371 }
372 }
373 verbose "Using $picflag to compile PIC code"
374
375 visibility_run hidden
376 visibility_run hidden_normal
377 visibility_run hidden_undef
378 visibility_run hidden_undef_def
379 visibility_run hidden_weak
380 visibility_run protected
381 visibility_run protected_undef
382 visibility_run protected_undef_def
383 visibility_run protected_weak
384 visibility_run normal
385
386 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
387 # Remove the temporary directory.
388 catch "exec rm -rf $tmpdir" exec_status
389 }
This page took 0.03679 seconds and 4 git commands to generate.