Fix Python help() test for Python 3
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / shared.exp
CommitLineData
d2dee3b2 1# Expect script for various ELF tests.
4b95cf5c 2# Copyright (C) 2006-2014 Free Software Foundation, Inc.
d2dee3b2 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
d2dee3b2 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
d2dee3b2
L
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
d2dee3b2
L
20#
21
22# Exclude non-ELF targets.
23
45394486
NC
24# The following tests require running the executable generated by ld,
25# or enough of a build environment to create a fully linked executable.
26# This is not commonly available when testing a cross-built linker.
27if ![isnative] {
28 return
29}
30
d2dee3b2
L
31if ![is_elf_format] {
32 return
33}
34
dd98f8d2 35# Check to see if the C compiler works
d2dee3b2
L
36if { [which $CC] == 0 } {
37 return
38}
39
fb2c6e43
AT
40# Add -ldl to extralibs if needed
41if { ![istarget *-*-freebsd*]} {
42 set extralibs "-ldl"
43}
44
d2dee3b2
L
45set build_tests {
46 {"Build libfoo.so"
47 "-shared" "-fPIC"
48 {foo.c} {} "libfoo.so"}
49 {"Build versioned libfoo.so"
50 "-shared -Wl,--version-script=foo.map" "-fPIC"
55255dae 51 {foo.c} {} "libfoov.so"}
d2dee3b2
L
52 {"Build libbar.so"
53 "-shared" "-fPIC"
54 {begin.c end.c} {} "libbar.so"}
fab4a87f
L
55 {"Build warn libbar.so"
56 "-shared" "-fPIC"
df71cb5c 57 {beginwarn.c end.c} {{readelf {-S --wide} libbarw.rd}} "libbarw.so"
dd98f8d2 58 "C" "^.*\\\): warning: function foo is deprecated$"}
d2dee3b2
L
59 {"Build hidden libbar.so"
60 "-shared" "-fPIC"
61 {begin.c endhidden.c} {} "libbarh.so"}
62 {"Build protected libbar.so"
63 "-shared" "-fPIC"
64 {begin.c endprotected.c} {} "libbarp.so"}
65 {"Build libbar.so with libfoo.so"
66 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
67 {end.c} {} "libbarfoo.so"}
68 {"Build libar.so with versioned libfoo.so"
69 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
70 {end.c} {} "libbarfoov.so"}
71 {"Build hidden libbar.so with libfoo.so"
72 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
73 {endhidden.c} {} "libbarhfoo.so"}
74 {"Build hidden libar.so with versioned libfoo.so"
75 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
76 {endhidden.c} {} "libbarhfoov.so"}
77 {"Build protected libbar.so with libfoo.so"
78 "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
79 {endprotected.c} {} "libbarpfoo.so"}
80 {"Build protected libbar.so with versioned libfoo.so"
81 "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
82 {endprotected.c} {} "libbarpfoov.so"}
55255dae
L
83 {"Build libdl1.so"
84 "-shared" "-fPIC"
85 {dl1.c} {} "libdl1.so"}
86 {"Build libdl2a.so with --dynamic-list=dl2.list"
87 "-shared -Wl,--dynamic-list=dl2.list" "-fPIC"
88 {dl2.c dl2xxx.c} {} "libdl2a.so"}
b7b7fe3f
AS
89 {"Build libdl2a.so with --dynamic-list=dl2a.list"
90 "-shared -Wl,--dynamic-list=dl2a.list" "-fPIC"
91 {dl2.c dl2xxx.c} {} "libdl2a.so"}
40b36307
L
92 {"Build libdl2a.so with --dynamic-list-data"
93 "-shared -Wl,--dynamic-list-data" "-fPIC"
94 {dl2.c dl2xxx.c} {} "libdl2a.so"}
55255dae
L
95 {"Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list"
96 "-shared -Wl,--dynamic-list=dl2.list,--dynamic-list=dl2xxx.list" "-fPIC"
97 {dl2.c dl2xxx.c} {} "libdl2b.so"}
d8cf8b51 98 {"Build libdl2c.so with --dynamic-list-data and dl2xxx.list"
40b36307 99 "-shared -Wl,--dynamic-list-data,--dynamic-list=dl2xxx.list" "-fPIC"
d8cf8b51 100 {dl2.c dl2xxx.c} {} "libdl2c.so"}
c555238b
L
101 {"Build libdl4a.so with --dynamic-list=dl4.list"
102 "-shared -Wl,--dynamic-list=dl4.list" "-fPIC"
103 {dl4.c dl4xxx.c} {} "libdl4a.so"}
d8cf8b51 104 {"Build libdl4b.so with --dynamic-list-data"
40b36307 105 "-shared -Wl,--dynamic-list-data" "-fPIC"
c555238b 106 {dl4.c dl4xxx.c} {} "libdl4b.so"}
d8cf8b51
L
107 {"Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list"
108 "-shared -Wl,--dynamic-list=dl4.list,--dynamic-list=dl4xxx.list" "-fPIC"
109 {dl4.c dl4xxx.c} {} "libdl4c.so"}
110 {"Build libdl4d.so with --dynamic-list-data and dl4xxx.list"
40b36307 111 "-shared -Wl,--dynamic-list-data,--dynamic-list=dl4xxx.list" "-fPIC"
d8cf8b51
L
112 {dl4.c dl4xxx.c} {} "libdl4d.so"}
113 {"Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new"
114 "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
115 {dl4.c dl4xxx.c} {} "libdl4e.so"}
116 {"Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions"
117 "-shared -Wl,--dynamic-list-cpp-new,-Bsymbolic-functions" "-fPIC"
118 {dl4.c dl4xxx.c} {} "libdl4f.so"}
119 {"Build libdl6a.so"
120 "-shared" "-fPIC"
121 {dl6.c} {} "libdl6a.so"}
122 {"Build libdl6b.so with -Bsymbolic --dynamic-list-data"
123 "-shared -Wl,-Bsymbolic,--dynamic-list-data" "-fPIC"
124 {dl6.c} {} "libdl6b.so"}
125 {"Build libdl6c.so with -Bsymbolic"
126 "-shared -Wl,-Bsymbolic" "-fPIC"
127 {dl6.c} {} "libdl6c.so"}
128 {"Build libdl6d.so with --dynamic-list-data -Bsymbolic"
129 "-shared -Wl,--dynamic-list-data,-Bsymbolic" "-fPIC"
130 {dl6.c} {} "libdl6d.so"}
43edfb7f
L
131 {"Build libdata1.so"
132 "-shared" "-fPIC"
133 {data1.c} {} "libdata1.so"}
a47edf27
L
134 {"Build libdata2.so"
135 "-shared" "-fPIC"
136 {data2.c} {} "libdata2.so"}
0a36a439
L
137 {"Build libcomm1.o"
138 "-r -nostdlib" ""
139 {comm1.c} {} "libcomm1.o"}
140 {"Build libfunc1.so"
141 "-shared" "-fPIC"
142 {func1.c} {} "libfunc1.so"}
d8880531
L
143 {"Build libpr9676-1.a"
144 "" "-fPIC"
145 {pr9676-1.c} {} "libpr9676-1.a"}
146 {"Build libpr9676-2.a"
147 "" "-fPIC"
148 {pr9676-2.c} {} "libpr9676-2.a"}
149 {"Build libpr9676-3.so"
150 "-shared" "-fPIC"
151 {pr9676-3.c} {} "libpr9676-3.so"}
152 {"Build libpr9676-4.so"
153 "-shared" "-fPIC"
154 {pr9676-4.c} {} "libpr9676-4.so"}
155 {"Build libpr9676-4a.so"
156 "-shared tmpdir/pr9676-4.o -Ltmpdir -lpr9676-3 -Wl,--start-group -lpr9676-1 -lpr9676-2 -Wl,--end-group"
157 "-fPIC"
158 {dummy.c} {{readelf {-s} pr9676.rd}} "libpr9676-4a.so"}
54ac0771
L
159 {"Build libpr9679.so"
160 "-shared" "-fPIC -O0"
161 {pr9679-1.c pr9679-2.c} {{readelf {-s} pr9679.rd}} "libpr9679.so"}
d023c380
L
162 {"Build libpr11138-1.so"
163 "-shared -Wl,--version-script=pr11138-1.map" "-fPIC"
164 {pr11138-1.c} {} "libpr11138-1.so"}
165 {"Build libpr11138-2.o"
166 "-r -nostdlib" ""
167 {pr11138-2.c} {} "libpr11138-2.o"}
3e0882af
L
168 {"Build pr13250-1.so"
169 "-shared" "-fPIC"
170 {pr13250-1.c} {} "libpr13250-1.so"}
171 {"Build pr13250-2.so with libpr13250-1.so"
5cb49709 172 "-shared -Wl,--no-as-needed tmpdir/libpr13250-1.so" "-fPIC"
3e0882af
L
173 {pr13250-2.c} {} "libpr13250-2.so"}
174 {"Build libpr13250-3.o"
175 "-r -nostdlib" ""
176 {pr13250-3.c} {} "libpr13250-3.o"}
bc9ad2e4
L
177 {"Build libpr14323-2.so"
178 "-shared" "-fPIC"
179 {pr14323-2.c} {} "libpr14323-2.so"}
dda8ddc5
L
180 {"Build pr14862-1.o"
181 "-r -nostdlib" ""
182 {pr14862-1.c} {} "libpr14862-1.o"}
183 {"Build libpr14862.so"
184 "-shared -Wl,--version-script=pr11138-1.map" "-fPIC"
185 {pr14862-2.c} {} "libpr14862.so"}
63406f0a
L
186 {"Build libneeded1b.so"
187 "-shared" "-fPIC"
188 {needed1b.c} {} "libneeded1b.so"}
189 {"Build libneeded1a.so"
2eb64a9f 190 "-shared -Wl,--add-needed,--no-as-needed -Ltmpdir -lneeded1b" "-fPIC"
63406f0a
L
191 {needed1a.c} {} "libneeded1a.so"}
192 {"Build libneeded1c.o"
193 "-r -nostdlib" ""
194 {needed1c.c} {} "libneeded1c.o"}
8fbb09e8
L
195 {"Build libneeded1pic.o"
196 "-r -nostdlib" "-fPIC"
197 {needed1c.c} {} "libneeded1pic.o"}
198 {"Build needed1a.so with --add-needed"
199 "-shared tmpdir/libneeded1pic.o -Wl,--add-needed,-rpath=tmpdir,-z,defs -Ltmpdir -lneeded1a" ""
200 {dummy.c} {} "needed1a.so"}
201 {"Build needed1b.so with --copy-dt-needed-entries"
202 "-shared tmpdir/libneeded1pic.o -Wl,--copy-dt-needed-entries,-rpath=tmpdir,-z,defs -Ltmpdir -lneeded1a" ""
203 {dummy.c} {} "needed1b.so"}
204 {"Build needed1a.so with --no-add-needed"
205 "-shared tmpdir/libneeded1pic.o -Wl,--no-add-needed -Ltmpdir -lneeded1a" ""
206 {dummy.c} {} "needed1c.so"}
207 {"Build needed1b.so with --no-copy-dt-needed-entries"
208 "-shared tmpdir/libneeded1pic.o -Wl,--no-copy-dt-needed-entries -Ltmpdir -lneeded1a" ""
209 {dummy.c} {} "needed1d.so"}
8877b5e5
AM
210 {"Build librel.so"
211 "-shared" "-fPIC"
212 {rel.c} {} "librel.so"}
5e319dd3
L
213 {"Build libneeded2a.so"
214 "-shared" "-fPIC"
215 {needed2a.c} {} "libneeded2a.so"}
216 {"Build libneeded2b.so"
217 "-shared -Wl,--version-script,needed2.ver" "-fPIC"
218 {needed2b.c} {} "libneeded2b.so"}
219 {"Build libneeded2c.o"
220 "-r -nostdlib" ""
221 {needed2c.c} {} "libneeded2c.o"}
222 {"Build needed2"
223 "tmpdir/libneeded2c.o -Wl,--as-needed tmpdir/libneeded2a.so tmpdir/libneeded2b.so" ""
224 {dummy.c} {} "needed2"}
1240be6b
AM
225 {"Build libneeded3a.so"
226 "-shared -Wl,--no-add-needed" "-fPIC"
227 {needed1a.c} {} "libneeded3a.so"}
228 {"Build libneeded3b.so"
229 "-shared -Wl,--no-as-needed,--add-needed -Ltmpdir -lneeded1b" "-fPIC"
230 {dummy.c} {} "libneeded3b.so"}
231 {"Build needed3.o"
232 "-r -nostdlib" ""
233 {needed3.c} {} "libneeded3.so"}
234 {"Build needed3"
235 "tmpdir/needed3.o -Wl,--as-needed -Ltmpdir -lneeded3a -lneeded3b -lneeded1b" ""
236 {dummy.c} {} "needed3"}
cec2c50d
L
237 {"Build libpr2404a.so"
238 "-shared" "-fPIC"
239 {pr2404a.c} {} "libpr2404a.so"}
240 {"Build libpr2404b.a"
241 "" ""
242 {pr2404b.c} {} "libpr2404b.a"}
50a53d3f
L
243 {"Build rdynamic-1"
244 "-rdynamic -Wl,--gc-sections" "-ffunction-sections"
245 {rdynamic-1.c} {{readelf {-s} rdynamic-1.rd}} "rdynamic-1"}
d6f6f455
L
246 {"Build dynamic-1"
247 "-Wl,--dynamic-list,dynamic-1.syms -Wl,--gc-sections" "-ffunction-sections"
248 {dynamic-1.c} {{readelf {-s} dynamic-1.rd}} "dynamic-1"}
bb4d2ac2
L
249 {"Build libpr16496a.so"
250 "-shared -Wl,--version-script=pr16496a.map" "-fPIC"
251 {pr16496a.c} {} "libpr16496a.so"}
252 {"Build libpr16496b.a"
253 "" "-fPIC"
254 {pr16496b.c} {} "libpr16496b.a"}
255 {"Build libpr16496b.so"
256 "-shared tmpdir/pr16496b.o tmpdir/libpr16496a.so" ""
257 {dummy.c} {{objdump {-R} pr16496b.od}} "libpr16496b.so"}
d2dee3b2
L
258}
259
dd98f8d2
NC
260run_cc_link_tests $build_tests
261
d2dee3b2
L
262set run_tests {
263 {"Run normal with libfoo.so"
264 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/end.o" ""
265 {main.c} "normal" "normal.out"}
266 {"Run protected with libfoo.so"
267 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endprotected.o" ""
268 {main.c} "protected" "normal.out"}
269 {"Run hidden with libfoo.so"
270 "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endhidden.o" ""
271 {main.c} "hidden" "hidden.out"}
272 {"Run normal with versioned libfoo.so"
273 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/end.o" ""
274 {main.c} "normalv" "normal.out"}
fab4a87f
L
275 {"Run warn with versioned libfoo.so"
276 "tmpdir/beginwarn.o tmpdir/libfoov.so" ""
277 {main.c} "warn" "warn.out"
278 "" "" "^.*\\\): warning: function foo is deprecated$"}
d2dee3b2
L
279 {"Run protected with versioned libfoo.so"
280 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endprotected.o" ""
281 {main.c} "protected" "normal.out"}
282 {"Run hidden with versioned libfoo.so"
283 "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endhidden.o" ""
284 {main.c} "hiddenv" "hidden.out"}
285 {"Run normal libbar.so with libfoo.so"
286 "tmpdir/libbarfoo.so tmpdir/libfoo.so" ""
287 {main.c} "normal" "normal.out"}
288 {"Run protected libbar.so with libfoo.so"
289 "tmpdir/libbarpfoo.so tmpdir/libfoo.so" ""
290 {main.c} "protected" "normal.out"}
291 {"Run hidden libbar.so with libfoo.so"
292 "tmpdir/libbarhfoo.so tmpdir/libfoo.so" ""
293 {main.c} "hidden" "hidden.out"}
294 {"Run normal libbar.so with versioned libfoo.so"
295 "tmpdir/libbarfoov.so tmpdir/libfoov.so" ""
296 {main.c} "normal" "normal.out"}
297 {"Run protected libbar.so with versioned libfoo.so"
298 "tmpdir/libbarpfoov.so tmpdir/libfoov.so" ""
299 {main.c} "protected" "normal.out"}
300 {"Run hidden libbar.so with versioned libfoo.so"
301 "tmpdir/libbarhfoov.so tmpdir/libfoov.so" ""
302 {main.c} "hidden" "hidden.out"}
d8cf8b51 303 {"Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so"
fb2c6e43 304 "--dynamic-list=dl1.list $extralibs" ""
d8cf8b51
L
305 {dl1main.c} "dl1a" "dl1.out"}
306 {"Run dl1b with --dynamic-list-data and dlopen on libdl1.so"
fb2c6e43 307 "--dynamic-list-data $extralibs" ""
d8cf8b51 308 {dl1main.c} "dl1b" "dl1.out"}
55255dae
L
309 {"Run with libdl2a.so"
310 "tmpdir/libdl2a.so" ""
311 {dl2main.c} "dl2a" "dl2a.out"}
312 {"Run with libdl2b.so"
313 "tmpdir/libdl2b.so" ""
314 {dl2main.c} "dl2b" "dl2b.out"}
d8cf8b51
L
315 {"Run with libdl2c.so"
316 "tmpdir/libdl2c.so" ""
317 {dl2main.c} "dl2c" "dl2b.out"}
c555238b
L
318 {"Run with libdl4a.so"
319 "tmpdir/libdl4a.so" ""
320 {dl4main.c} "dl4a" "dl4a.out"}
321 {"Run with libdl4b.so"
322 "tmpdir/libdl4b.so" ""
d8cf8b51
L
323 {dl4main.c} "dl4b" "dl4a.out"}
324 {"Run with libdl4c.so"
325 "tmpdir/libdl4c.so" ""
326 {dl4main.c} "dl4c" "dl4b.out"}
327 {"Run with libdl4d.so"
328 "tmpdir/libdl4d.so" ""
329 {dl4main.c} "dl4d" "dl4b.out"}
330 {"Run with libdl4e.so"
331 "tmpdir/libdl4e.so" ""
332 {dl4main.c} "dl4e" "dl4a.out"}
333 {"Run with libdl4f.so"
334 "tmpdir/libdl4f.so" ""
335 {dl4main.c} "dl4f" "dl4a.out"}
336 {"Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so"
fb2c6e43 337 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
338 {dl6amain.c} "dl6a1" "dl6a.out"}
339 {"Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so"
fb2c6e43 340 "-Bsymbolic-functions $extralibs" ""
d8cf8b51
L
341 {dl6amain.c} "dl6a2" "dl6b.out"}
342 {"Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so"
fb2c6e43 343 "-Bsymbolic $extralibs" ""
d8cf8b51
L
344 {dl6amain.c} "dl6a3" "dl6b.out"}
345 {"Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so"
fb2c6e43 346 "-Bsymbolic --dynamic-list-data $extralibs" ""
d8cf8b51
L
347 {dl6amain.c} "dl6a4" "dl6a.out"}
348 {"Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so"
fb2c6e43 349 "-Bsymbolic-functions --dynamic-list-cpp-new $extralibs" ""
d8cf8b51
L
350 {dl6amain.c} "dl6a5" "dl6b.out"}
351 {"Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so"
fb2c6e43 352 "--dynamic-list-cpp-new -Bsymbolic-functions $extralibs" ""
d8cf8b51
L
353 {dl6amain.c} "dl6a6" "dl6b.out"}
354 {"Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so"
fb2c6e43 355 "--dynamic-list-data -Bsymbolic $extralibs" ""
d8cf8b51
L
356 {dl6amain.c} "dl6a7" "dl6a.out"}
357 {"Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so"
fb2c6e43 358 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
359 {dl6bmain.c} "dl6b1" "dl6a.out"}
360 {"Run dl6b2 with dlopen on libdl6b.so"
fb2c6e43 361 "$extralibs" ""
d8cf8b51
L
362 {dl6bmain.c} "dl6b2" "dl6b.out"}
363 {"Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so"
fb2c6e43 364 "--dynamic-list-data $extralibs" ""
d8cf8b51
L
365 {dl6cmain.c} "dl6c1" "dl6b.out"}
366 {"Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so"
fb2c6e43 367 "--dynamic-list-data $extralibs" ""
d8cf8b51 368 {dl6dmain.c} "dl6d1" "dl6b.out"}
43edfb7f
L
369 {"Run with libdata1.so"
370 "tmpdir/libdata1.so" ""
371 {dynbss1.c} "dynbss1" "pass.out"}
a47edf27
L
372 {"Run with libdata2.so"
373 "tmpdir/libdata2.so" ""
374 {weakdef1.c} "weakdef1" "pass.out"}
0a36a439
L
375 {"Run with libfunc1.so comm1.o"
376 "tmpdir/libfunc1.so tmpdir/comm1.o" ""
377 {dummy.c} "comm1" "pass.out"}
378 {"Run with comm1.o libfunc1.so"
379 "tmpdir/comm1.o tmpdir/libfunc1.so" ""
380 {dummy.c} "comm1" "pass.out"}
d023c380
L
381 {"Run with pr11138-2.c libpr11138-1.so"
382 "--version-script=pr11138-2.map tmpdir/pr11138-2.o tmpdir/libpr11138-1.so" ""
383 {dummy.c} "pr11138a" "pr11138.out"}
384 {"Run with libpr11138-1.so pr11138-2.c"
385 "--version-script=pr11138-2.map tmpdir/libpr11138-1.so tmpdir/pr11138-2.o" ""
386 {dummy.c} "pr11138b" "pr11138.out"}
3e0882af
L
387 {"Run with pr13250-3.c, libpr13250-1.so and libpr13250-2.so"
388 "--as-needed tmpdir/pr13250-3.o tmpdir/libpr13250-1.so tmpdir/libpr13250-2.so" ""
389 {dummy.c} "pr13250" "pass.out"}
bc9ad2e4
L
390 {"Run with pr14323-1.c pr14323-2.so"
391 "tmpdir/libpr14323-2.so" ""
392 {pr14323-1.c} "pr14323" "pass.out"}
dda8ddc5
L
393 {"Run with pr14862-1.c libpr14862.so"
394 "--as-needed tmpdir/libpr14862-1.o tmpdir/libpr14862.so" ""
395 {dummy.c} "pr14862" "pr14862.out"}
63406f0a
L
396 {"Link with --add-needed"
397 "tmpdir/libneeded1c.o --add-needed -rpath=tmpdir -Ltmpdir -lneeded1a" ""
398 {dummy.c} "needed1a" "needed1.out"}
399 {"Link with --copy-dt-needed-entries"
400 "tmpdir/libneeded1c.o --copy-dt-needed-entries -rpath=tmpdir -Ltmpdir -lneeded1a" ""
401 {dummy.c} "needed1b" "needed1.out"}
8877b5e5
AM
402 {"Run relmain"
403 "--no-as-needed -rpath=tmpdir -Ltmpdir -lrel" ""
404 {relmain.c} "relmain" "relmain.out"}
cec2c50d
L
405 {"Run pr2404"
406 "tmpdir/pr2404b.o tmpdir/libpr2404a.so" ""
407 {dummy.c} "pr2404" "pr2404.out"}
d2dee3b2
L
408}
409
d2dee3b2
L
410# NetBSD ELF systems do not currently support the .*_array sections.
411run_ld_link_exec_tests [list "*-*-netbsdelf*"] $run_tests
55255dae 412
63406f0a
L
413# Check --no-add-needed and --no-copy-dt-needed-entries
414set testname "--no-add-needed"
f1d7f4a6 415set exec_output [run_host_cmd "$CC" "tmpdir/libneeded1c.o -Wl,--no-add-needed,-rpath-link=tmpdir -Ltmpdir -lneeded1a"]
e65cb106 416if { [ regexp "tmpdir/libneeded1b.so: .*: DSO missing" $exec_output ] } {
63406f0a
L
417 pass $testname
418} {
419 fail $testname
420}
421set testname "--no-copy-dt-needed-entries"
f1d7f4a6 422set exec_output [run_host_cmd "$CC" "tmpdir/libneeded1c.o -Wl,--no-copy-dt-needed-entries,-rpath-link=tmpdir -Ltmpdir -lneeded1a"]
e65cb106 423if { [ regexp "tmpdir/libneeded1b.so: .*: DSO missing" $exec_output ] } {
63406f0a
L
424 pass $testname
425} {
426 fail $testname
427}
8fbb09e8 428set testname "--no-add-needed -shared"
f1d7f4a6 429set exec_output [run_host_cmd "$CC" "-shared tmpdir/libneeded1pic.o -Wl,--no-add-needed,-z,defs -Ltmpdir -lneeded1a"]
8fbb09e8
L
430if { [ regexp "undefined reference to `bar'" $exec_output ] } {
431 pass $testname
432} {
433 fail $testname
434}
435set testname "--no-copy-dt-needed-entries -shared"
f1d7f4a6 436set exec_output [run_host_cmd "$CC" "-shared tmpdir/libneeded1pic.o -Wl,--no-copy-dt-needed-entries,-z,defs -Ltmpdir -lneeded1a"]
8fbb09e8
L
437if { [ regexp "undefined reference to `bar'" $exec_output ] } {
438 pass $testname
439} {
440 fail $testname
441}
63406f0a 442
dd98f8d2 443# Check to see if the C++ compiler works
55255dae
L
444if { [which $CXX] == 0 } {
445 return
446}
447
448set build_cxx_tests {
449 {"Build libdl3a.so with --dynamic-list=dl3.list"
450 "-shared -Wl,--dynamic-list=dl3.list" "-fPIC"
451 {dl3.cc} {} "libdl3a.so" "c++"}
452 {"Build libdl3b.so with -Bsymbolic"
453 "-shared -Wl,-Bsymbolic" "-fPIC"
454 {dl3.cc} {} "libdl3b.so" "c++"}
455 {"Build libdl3a.so with --dynamic-list-cpp-typeinfo"
456 "-shared -Wl,--dynamic-list-cpp-typeinfo" "-fPIC"
457 {dl3.cc} {} "libdl3c.so" "c++"}
d8cf8b51 458 {"Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new"
40b36307 459 "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
d8cf8b51
L
460 {del.cc new.cc} {} "libnew1a.so" "c++"}
461 {"Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new"
462 "-shared -Wl,--dynamic-list-data,--dynamic-list-cpp-new" "-fPIC"
463 {del.cc new.cc} {} "libnew1b.so" "c++"}
55255dae
L
464}
465
b37470e4
L
466# "-shared -Bsymbolic" only works with gcc 4.5.0 and newer.
467# {"Run with libdl3b.so"
468# "tmpdir/libdl3b.so" ""
469# {dl3main.cc} "dl3b" "dl3b.out" "" "c++"}
cb5ab6c8
L
470set run_cxx_tests {
471 {"Run with libdl3a.so"
472 "-Wl,--no-as-needed tmpdir/libdl3a.so" ""
473 {dl3main.cc} "dl3a" "dl3a.out" "" "c++"}
55255dae 474 {"Run with libdl3c.so"
5cb49709 475 "-Wl,--no-as-needed tmpdir/libdl3c.so" ""
55255dae 476 {dl3main.cc} "dl3c" "dl3a.out" "" "c++"}
d8cf8b51
L
477 {"Run with libnew1a.so"
478 "tmpdir/libnew1a.so" ""
479 {dl5.cc} "dl5a" "dl5.out" "" "c++"}
480 {"Run with libnew1b.so"
481 "tmpdir/libnew1b.so" ""
482 {dl5.cc} "dl5b" "dl5.out" "" "c++"}
55255dae
L
483}
484
485run_cc_link_tests $build_cxx_tests
486run_ld_link_exec_tests [] $run_cxx_tests
22ef172a
L
487
488if { [istarget *-*-linux*]
489 || [istarget *-*-nacl*]
490 || [istarget *-*-gnu*] } {
491 run_cc_link_tests [list \
492 [list \
493 "Build libpr2404b.a with PIE" \
494 "" \
495 "-fPIE" \
496 { pr2404b.c } \
497 {} \
498 "libpr2404b.a" \
499 ] \
500 ]
501 run_ld_link_exec_tests [] [list \
502 [list \
503 "Run pr2404 with PIE" \
504 "-pie tmpdir/pr2404b.o tmpdir/libpr2404a.so" \
505 "" \
506 { dummy.c } \
507 "pr2404pie" \
508 "pr2404.out" \
509 "-fPIE" \
510 ] \
511 ]
512}
This page took 0.63348 seconds and 4 git commands to generate.