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