OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-elf/] [shared.exp] - Blame information for rev 38

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
# Expect script for various ELF tests.
2
#   Copyright 2006, 2007 Free Software Foundation, Inc.
3
#
4
# This file is part of the GNU Binutils.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 3 of the License, or
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
18
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19
# MA 02110-1301, USA.
20
#
21
 
22
# Exclude non-ELF targets.
23
 
24
if ![is_elf_format] {
25
    return
26
}
27
 
28
# The following tests require running the executable generated by ld.
29
if ![isnative] {
30
    return
31
}
32
 
33
# Check if compiler works
34
if { [which $CC] == 0 } {
35
    return
36
}
37
 
38
set build_tests {
39
  {"Build libfoo.so"
40
   "-shared" "-fPIC"
41
   {foo.c} {} "libfoo.so"}
42
  {"Build versioned libfoo.so"
43
   "-shared -Wl,--version-script=foo.map" "-fPIC"
44
   {foo.c} {} "libfoov.so"}
45
  {"Build libbar.so"
46
   "-shared" "-fPIC"
47
   {begin.c end.c} {} "libbar.so"}
48
  {"Build warn libbar.so"
49
   "-shared" "-fPIC"
50
   {beginwarn.c end.c} {} "libbarw.so"}
51
  {"Build hidden libbar.so"
52
   "-shared" "-fPIC"
53
   {begin.c endhidden.c} {} "libbarh.so"}
54
  {"Build protected libbar.so"
55
   "-shared" "-fPIC"
56
   {begin.c endprotected.c} {} "libbarp.so"}
57
  {"Build libbar.so with libfoo.so"
58
   "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
59
   {end.c} {} "libbarfoo.so"}
60
  {"Build libar.so with versioned libfoo.so"
61
   "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
62
   {end.c} {} "libbarfoov.so"}
63
  {"Build hidden libbar.so with libfoo.so"
64
   "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
65
   {endhidden.c} {} "libbarhfoo.so"}
66
  {"Build hidden libar.so with versioned libfoo.so"
67
   "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
68
   {endhidden.c} {} "libbarhfoov.so"}
69
  {"Build protected libbar.so with libfoo.so"
70
   "-shared tmpdir/begin.o tmpdir/libfoo.so" "-fPIC"
71
   {endprotected.c} {} "libbarpfoo.so"}
72
  {"Build protected libbar.so with versioned libfoo.so"
73
   "-shared tmpdir/begin.o tmpdir/libfoov.so" "-fPIC"
74
   {endprotected.c} {} "libbarpfoov.so"}
75
  {"Build libdl1.so"
76
   "-shared" "-fPIC"
77
   {dl1.c} {} "libdl1.so"}
78
  {"Build libdl2a.so with --dynamic-list=dl2.list"
79
   "-shared -Wl,--dynamic-list=dl2.list" "-fPIC"
80
   {dl2.c dl2xxx.c} {} "libdl2a.so"}
81
  {"Build libdl2a.so with --dynamic-list=dl2a.list"
82
   "-shared -Wl,--dynamic-list=dl2a.list" "-fPIC"
83
   {dl2.c dl2xxx.c} {} "libdl2a.so"}
84
  {"Build libdl2a.so with --dynamic-list-data"
85
   "-shared -Wl,--dynamic-list-data" "-fPIC"
86
   {dl2.c dl2xxx.c} {} "libdl2a.so"}
87
  {"Build libdl2b.so with --dynamic-list=dl2.list and dl2xxx.list"
88
   "-shared -Wl,--dynamic-list=dl2.list,--dynamic-list=dl2xxx.list" "-fPIC"
89
   {dl2.c dl2xxx.c} {} "libdl2b.so"}
90
  {"Build libdl2c.so with --dynamic-list-data and dl2xxx.list"
91
   "-shared -Wl,--dynamic-list-data,--dynamic-list=dl2xxx.list" "-fPIC"
92
   {dl2.c dl2xxx.c} {} "libdl2c.so"}
93
  {"Build libdl4a.so with --dynamic-list=dl4.list"
94
   "-shared -Wl,--dynamic-list=dl4.list" "-fPIC"
95
   {dl4.c dl4xxx.c} {} "libdl4a.so"}
96
  {"Build libdl4b.so with --dynamic-list-data"
97
   "-shared -Wl,--dynamic-list-data" "-fPIC"
98
   {dl4.c dl4xxx.c} {} "libdl4b.so"}
99
  {"Build libdl4c.so with --dynamic-list=dl4.list and dl4xxx.list"
100
   "-shared -Wl,--dynamic-list=dl4.list,--dynamic-list=dl4xxx.list" "-fPIC"
101
   {dl4.c dl4xxx.c} {} "libdl4c.so"}
102
  {"Build libdl4d.so with --dynamic-list-data and dl4xxx.list"
103
   "-shared -Wl,--dynamic-list-data,--dynamic-list=dl4xxx.list" "-fPIC"
104
   {dl4.c dl4xxx.c} {} "libdl4d.so"}
105
  {"Build libdl4e.so with -Bsymbolic-functions --dynamic-list-cpp-new"
106
   "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
107
   {dl4.c dl4xxx.c} {} "libdl4e.so"}
108
  {"Build libdl4f.so with --dynamic-list-cpp-new -Bsymbolic-functions"
109
   "-shared -Wl,--dynamic-list-cpp-new,-Bsymbolic-functions" "-fPIC"
110
   {dl4.c dl4xxx.c} {} "libdl4f.so"}
111
  {"Build libdl6a.so"
112
   "-shared" "-fPIC"
113
   {dl6.c} {} "libdl6a.so"}
114
  {"Build libdl6b.so with -Bsymbolic --dynamic-list-data"
115
   "-shared -Wl,-Bsymbolic,--dynamic-list-data" "-fPIC"
116
   {dl6.c} {} "libdl6b.so"}
117
  {"Build libdl6c.so with -Bsymbolic"
118
   "-shared -Wl,-Bsymbolic" "-fPIC"
119
   {dl6.c} {} "libdl6c.so"}
120
  {"Build libdl6d.so with --dynamic-list-data -Bsymbolic"
121
   "-shared -Wl,--dynamic-list-data,-Bsymbolic" "-fPIC"
122
   {dl6.c} {} "libdl6d.so"}
123
  {"Build libdata1.so"
124
   "-shared" "-fPIC"
125
   {data1.c} {} "libdata1.so"}
126
}
127
 
128
set run_tests {
129
    {"Run normal with libfoo.so"
130
     "tmpdir/begin.o tmpdir/libfoo.so tmpdir/end.o" ""
131
     {main.c} "normal" "normal.out"}
132
    {"Run protected with libfoo.so"
133
     "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endprotected.o" ""
134
     {main.c} "protected" "normal.out"}
135
    {"Run hidden with libfoo.so"
136
     "tmpdir/begin.o tmpdir/libfoo.so tmpdir/endhidden.o" ""
137
     {main.c} "hidden" "hidden.out"}
138
    {"Run normal with versioned libfoo.so"
139
     "tmpdir/begin.o tmpdir/libfoov.so tmpdir/end.o" ""
140
     {main.c} "normalv" "normal.out"}
141
    {"Run warn with versioned libfoo.so"
142
     "tmpdir/beginwarn.o tmpdir/libfoov.so" ""
143
     {main.c} "warn" "warn.out"
144
     "" "" "^.*\\\): warning: function foo is deprecated$"}
145
    {"Run protected with versioned libfoo.so"
146
     "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endprotected.o" ""
147
     {main.c} "protected" "normal.out"}
148
    {"Run hidden with versioned libfoo.so"
149
     "tmpdir/begin.o tmpdir/libfoov.so tmpdir/endhidden.o" ""
150
     {main.c} "hiddenv" "hidden.out"}
151
    {"Run normal libbar.so with libfoo.so"
152
     "tmpdir/libbarfoo.so tmpdir/libfoo.so" ""
153
     {main.c} "normal" "normal.out"}
154
    {"Run protected libbar.so with libfoo.so"
155
     "tmpdir/libbarpfoo.so tmpdir/libfoo.so" ""
156
     {main.c} "protected" "normal.out"}
157
    {"Run hidden libbar.so with libfoo.so"
158
     "tmpdir/libbarhfoo.so tmpdir/libfoo.so" ""
159
     {main.c} "hidden" "hidden.out"}
160
    {"Run normal libbar.so with versioned libfoo.so"
161
     "tmpdir/libbarfoov.so tmpdir/libfoov.so" ""
162
     {main.c} "normal" "normal.out"}
163
    {"Run protected libbar.so with versioned libfoo.so"
164
     "tmpdir/libbarpfoov.so tmpdir/libfoov.so" ""
165
     {main.c} "protected" "normal.out"}
166
    {"Run hidden libbar.so with versioned libfoo.so"
167
     "tmpdir/libbarhfoov.so tmpdir/libfoov.so" ""
168
     {main.c} "hidden" "hidden.out"}
169
    {"Run dl1a with --dynamic-list=dl1.list and dlopen on libdl1.so"
170
     "--dynamic-list=dl1.list -ldl" ""
171
     {dl1main.c} "dl1a" "dl1.out"}
172
    {"Run dl1b with --dynamic-list-data and dlopen on libdl1.so"
173
     "--dynamic-list-data -ldl" ""
174
     {dl1main.c} "dl1b" "dl1.out"}
175
    {"Run with libdl2a.so"
176
     "tmpdir/libdl2a.so" ""
177
     {dl2main.c} "dl2a" "dl2a.out"}
178
    {"Run with libdl2b.so"
179
     "tmpdir/libdl2b.so" ""
180
     {dl2main.c} "dl2b" "dl2b.out"}
181
    {"Run with libdl2c.so"
182
     "tmpdir/libdl2c.so" ""
183
     {dl2main.c} "dl2c" "dl2b.out"}
184
    {"Run with libdl4a.so"
185
     "tmpdir/libdl4a.so" ""
186
     {dl4main.c} "dl4a" "dl4a.out"}
187
    {"Run with libdl4b.so"
188
     "tmpdir/libdl4b.so" ""
189
     {dl4main.c} "dl4b" "dl4a.out"}
190
    {"Run with libdl4c.so"
191
     "tmpdir/libdl4c.so" ""
192
     {dl4main.c} "dl4c" "dl4b.out"}
193
    {"Run with libdl4d.so"
194
     "tmpdir/libdl4d.so" ""
195
     {dl4main.c} "dl4d" "dl4b.out"}
196
    {"Run with libdl4e.so"
197
     "tmpdir/libdl4e.so" ""
198
     {dl4main.c} "dl4e" "dl4a.out"}
199
    {"Run with libdl4f.so"
200
     "tmpdir/libdl4f.so" ""
201
     {dl4main.c} "dl4f" "dl4a.out"}
202
    {"Run dl6a1 with --dynamic-list-data and dlopen on libdl6a.so"
203
     "--dynamic-list-data -ldl" ""
204
     {dl6amain.c} "dl6a1" "dl6a.out"}
205
    {"Run dl6a2 with -Bsymbolic-functions and dlopen on libdl6a.so"
206
     "-Bsymbolic-functions -ldl" ""
207
     {dl6amain.c} "dl6a2" "dl6b.out"}
208
    {"Run dl6a3 with -Bsymbolic and dlopen on libdl6a.so"
209
     "-Bsymbolic -ldl" ""
210
     {dl6amain.c} "dl6a3" "dl6b.out"}
211
    {"Run dl6a4 with -Bsymbolic --dynamic-list-data and dlopen on libdl6a.so"
212
     "-Bsymbolic --dynamic-list-data -ldl" ""
213
     {dl6amain.c} "dl6a4" "dl6a.out"}
214
    {"Run dl6a5 with -Bsymbolic-functions --dynamic-list-cpp-new and dlopen on libdl6a.so"
215
     "-Bsymbolic-functions --dynamic-list-cpp-new -ldl" ""
216
     {dl6amain.c} "dl6a5" "dl6b.out"}
217
    {"Run dl6a6 with --dynamic-list-cpp-new -Bsymbolic-functions and dlopen on libdl6a.so"
218
     "--dynamic-list-cpp-new -Bsymbolic-functions -ldl" ""
219
     {dl6amain.c} "dl6a6" "dl6b.out"}
220
    {"Run dl6a7 with --dynamic-list-data -Bsymbolic and dlopen on libdl6a.so"
221
     "--dynamic-list-data -Bsymbolic -ldl" ""
222
     {dl6amain.c} "dl6a7" "dl6a.out"}
223
    {"Run dl6b1 with --dynamic-list-data and dlopen on libdl6b.so"
224
     "--dynamic-list-data -ldl" ""
225
     {dl6bmain.c} "dl6b1" "dl6a.out"}
226
    {"Run dl6b2 with dlopen on libdl6b.so"
227
     "-ldl" ""
228
     {dl6bmain.c} "dl6b2" "dl6b.out"}
229
    {"Run dl6c1 with --dynamic-list-data and dlopen on libdl6c.so"
230
     "--dynamic-list-data -ldl" ""
231
     {dl6cmain.c} "dl6c1" "dl6b.out"}
232
    {"Run dl6d1 with --dynamic-list-data and dlopen on libdl6d.so"
233
     "--dynamic-list-data -ldl" ""
234
     {dl6dmain.c} "dl6d1" "dl6b.out"}
235
    {"Run with libdata1.so"
236
     "tmpdir/libdata1.so" ""
237
     {dynbss1.c} "dynbss1" "pass.out"}
238
}
239
 
240
run_cc_link_tests $build_tests
241
# NetBSD ELF systems do not currently support the .*_array sections.
242
run_ld_link_exec_tests [list "*-*-netbsdelf*"] $run_tests
243
 
244
# Check if compiler works
245
if { [which $CXX] == 0 } {
246
    return
247
}
248
 
249
set build_cxx_tests {
250
  {"Build libdl3a.so with --dynamic-list=dl3.list"
251
   "-shared -Wl,--dynamic-list=dl3.list" "-fPIC"
252
   {dl3.cc} {} "libdl3a.so" "c++"}
253
  {"Build libdl3b.so with -Bsymbolic"
254
   "-shared -Wl,-Bsymbolic" "-fPIC"
255
   {dl3.cc} {} "libdl3b.so" "c++"}
256
  {"Build libdl3a.so with --dynamic-list-cpp-typeinfo"
257
   "-shared -Wl,--dynamic-list-cpp-typeinfo" "-fPIC"
258
   {dl3.cc} {} "libdl3c.so" "c++"}
259
  {"Build libdnew1a.so with --Bsymbolic-functions --dynamic-list-cpp-new"
260
   "-shared -Wl,-Bsymbolic-functions,--dynamic-list-cpp-new" "-fPIC"
261
   {del.cc new.cc} {} "libnew1a.so" "c++"}
262
  {"Build libdnew1b.so with --dynamic-list-data --dynamic-list-cpp-new"
263
   "-shared -Wl,--dynamic-list-data,--dynamic-list-cpp-new" "-fPIC"
264
   {del.cc new.cc} {} "libnew1b.so" "c++"}
265
}
266
 
267
set run_cxx_tests {
268
    {"Run with libdl3a.so"
269
     "tmpdir/libdl3a.so" ""
270
     {dl3main.cc} "dl3a" "dl3a.out" "" "c++"}
271
    {"Run with libdl3b.so"
272
     "tmpdir/libdl3b.so" ""
273
     {dl3main.cc} "dl3b" "dl3b.out" "" "c++"}
274
    {"Run with libdl3c.so"
275
     "tmpdir/libdl3c.so" ""
276
     {dl3main.cc} "dl3c" "dl3a.out" "" "c++"}
277
    {"Run with libnew1a.so"
278
     "tmpdir/libnew1a.so" ""
279
     {dl5.cc} "dl5a" "dl5.out" "" "c++"}
280
    {"Run with libnew1b.so"
281
     "tmpdir/libnew1b.so" ""
282
     {dl5.cc} "dl5b" "dl5.out" "" "c++"}
283
}
284
 
285
run_cc_link_tests $build_cxx_tests
286
run_ld_link_exec_tests [] $run_cxx_tests

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.