]> Git Repo - binutils.git/blame - binutils/testsuite/binutils-all/dlltool.exp
Add a missing `"'.
[binutils.git] / binutils / testsuite / binutils-all / dlltool.exp
CommitLineData
aa820537 1# Copyright 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
c9e38879
NC
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
32866df7 5# the Free Software Foundation; either version 3 of the License, or
c9e38879
NC
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
b43b5d5f 15# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
c9e38879 16
062cbcd6
L
17if {![istarget "i*86-*-*"]
18 && ![istarget "x86_64-*-mingw*"]
19 && ![istarget "arm-*-pe*"]} {
c9e38879
NC
20 return
21}
22
23if {![istarget "i*86-*-*pe*"] \
24 && ![istarget "i*86-*-cygwin*"] \
99ad8390 25 && ![istarget "i*86-*-mingw32*"] \
1d2ca237 26 && ![istarget "arm-*-pe*"] \
42037fe5 27 && ![istarget "x86_64-*-mingw*"] } {
c9e38879
NC
28 set target_xfail "yes"
29} else {
30 set target_xfail "no"
31}
32
33if {![info exists DLLTOOL]} then {
34 return
35}
36
37if {[which $DLLTOOL] == 0} then {
38 return
39}
40
1d2ca237
KT
41verbose "$DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" 1
42catch "exec $DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" err
c9e38879
NC
43
44if ![string match "" $err] then {
45 send_log "$err\n"
46 verbose "$err" 1
47 fail "dlltool (fastcall export)"
0fd555c4
NC
48} else {
49 pass "dlltool (fastcall export)"
c9e38879
NC
50}
51
e4c8d1e4
L
52if { "$target_xfail" == "yes" } {
53 setup_xfail *-*
54}
55
1d2ca237
KT
56verbose "$DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
57catch "exec $DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
607dea97
NC
58
59if ![string match "" $err] then {
60 send_log "$err\n"
61 verbose "$err" 1
0fd555c4 62 fail "dlltool -p (execution)"
607dea97
NC
63 continue
64}
65
0fd555c4
NC
66pass "dlltool -p (execution)"
67
68set got [binutils_run $NM "tmpdir/libalias.a"]
69set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
70
71if [regexp $want $got] then {
72 pass "dlltool -p (symbol names)"
73} else {
74 fail "dlltool -p (symbol names)"
75}
76
77set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias.a"]
78set want "(Contents of section .idata\\\$6:.*\\.\\.symbol\\.\\..*){2,2}"
79
80if [regexp $want $got] then {
81 pass "dlltool -p (import name)"
82} else {
83 fail "dlltool -p (import name)"
84}
bf201fdd 85
1d2ca237
KT
86verbose "$DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
87catch "exec $DLLTOOL -p prefix --leading-underscore -l tmpdir/libalias2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
bf201fdd
KT
88
89if ![string match "" $err] then {
90 send_log "$err\n"
91 verbose "$err" 1
92 fail "dlltool -p (execution) alias-2.def"
93 continue
94}
95
96pass "dlltool -p (execution) alias-2.def"
97
98set got [binutils_run $NM "tmpdir/libalias2.a"]
99set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
100
101if [regexp $want $got] then {
102 pass "dlltool -p (symbol names) alias-2.def"
103} else {
104 fail "dlltool -p (symbol names) alias-2.def"
105}
106
107set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias2.a"]
108set want "(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
109
110if [regexp $want $got] then {
111 pass "dlltool -p (import name) alias-2.def"
112} else {
113 fail "dlltool -p (import name) alias-2.def"
114}
0bd7136a
KT
115
116# Here we test explicit without leading underscore
117
118verbose "$DLLTOOL --no-leading-underscore -d $srcdir/$subdir/fastcall.def" 1
119catch "exec $DLLTOOL --no-leading-underscore -d $srcdir/$subdir/fastcall.def" err
120
121if ![string match "" $err] then {
122 send_log "$err\n"
123 verbose "$err" 1
124 fail "dlltool (fastcall export no leading underscore)"
125} else {
126 pass "dlltool (fastcall export no leading underscore)"
127}
128
129if { "$target_xfail" == "yes" } {
130 setup_xfail *-*
131}
132
133verbose "$DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
134catch "exec $DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
135
136if ![string match "" $err] then {
137 send_log "$err\n"
138 verbose "$err" 1
139 fail "dlltool -p (execution no leading underscore)"
140 continue
141}
142
143pass "dlltool -p (execution no leading underscore)"
144
145set got [binutils_run $NM "tmpdir/libalias_nu.a"]
146set want "00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
147
148if [regexp $want $got] then {
149 pass "dlltool -p (symbol names no leading underscore)"
150} else {
151 fail "dlltool -p (symbol names no leading underscore)"
152}
153
154set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias_nu.a"]
155set want "(Contents of section .idata\\\$6:.*\\.\\.symbol\\.\\..*){2,2}"
156
157if [regexp $want $got] then {
158 pass "dlltool -p (import name no leading underscore)"
159} else {
160 fail "dlltool -p (import name no leading underscore)"
161}
162
163verbose "$DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
164catch "exec $DLLTOOL --no-leading-underscore -p prefix -l tmpdir/libalias_nu2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
165
166if ![string match "" $err] then {
167 send_log "$err\n"
168 verbose "$err" 1
169 fail "dlltool -p (execution no leading underscore) alias-2.def"
170 continue
171}
172
173pass "dlltool -p (execution no leading underscore) alias-2.def"
174
175set got [binutils_run $NM "tmpdir/libalias_nu2.a"]
176set want "00000000 I __imp_prefixsymbol.*00000000 T prefixsymbol.*00000000 I __imp_symbol.*00000000 T symbol"
177
178if [regexp $want $got] then {
179 pass "dlltool -p (symbol names no leading underscore) alias-2.def"
180} else {
181 fail "dlltool -p (symbol names no leading underscore) alias-2.def"
182}
183
184set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias_nu2.a"]
185set want "(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
186
187if [regexp $want $got] then {
188 pass "dlltool -p (import name no leading underscore) alias-2.def"
189} else {
190 fail "dlltool -p (import name no leading underscore) alias-2.def"
191}
192
193# Now we test with leading underscore
194verbose "$DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" 1
195catch "exec $DLLTOOL --leading-underscore -d $srcdir/$subdir/fastcall.def" err
196
197if ![string match "" $err] then {
198 send_log "$err\n"
199 verbose "$err" 1
200 fail "dlltool (fastcall export leading underscore)"
201} else {
202 pass "dlltool (fastcall export leading underscore)"
203}
204
205if { "$target_xfail" == "yes" } {
206 setup_xfail *-*
207}
208
209verbose "$DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" 1
210catch "exec $DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u.a -d $srcdir/$subdir/alias.def $dlltool_gas_flag" err
211
212if ![string match "" $err] then {
213 send_log "$err\n"
214 verbose "$err" 1
215 fail "dlltool -p (execution leading underscore)"
216 continue
217}
218
219pass "dlltool -p (execution leading-underscore)"
220
221set got [binutils_run $NM "tmpdir/libalias_u.a"]
222set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
223
224if [regexp $want $got] then {
225 pass "dlltool -p (symbol names leading underscore)"
226} else {
227 fail "dlltool -p (symbol names leading underscore)"
228}
229
230set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias_u.a"]
231set want "(Contents of section .idata\\\$6:.*\\.\\.symbol\\..*){2,2}"
232
233if [regexp $want $got] then {
234 pass "dlltool -p (import name leading underscore)"
235} else {
236 fail "dlltool -p (import name leading underscore)"
237}
238
239verbose "$DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" 1
240catch "exec $DLLTOOL --leading-underscore -p prefix -l tmpdir/libalias_u2.a -d $srcdir/$subdir/alias-2.def $dlltool_gas_flag" err
241
242if ![string match "" $err] then {
243 send_log "$err\n"
244 verbose "$err" 1
245 fail "dlltool -p (execution) alias-2.def"
246 continue
247}
248
249pass "dlltool -p (execution leading underscore) alias-2.def"
250
251set got [binutils_run $NM "tmpdir/libalias_u2.a"]
252set want "00000000 I __imp__prefix_symbol.*00000000 T _prefix_symbol.*00000000 I __imp__symbol.*00000000 T _symbol"
253
254if [regexp $want $got] then {
255 pass "dlltool -p (symbol names leading underscore) alias-2.def"
256} else {
257 fail "dlltool -p (symbol names leading underscore) alias-2.def"
258}
259
260set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias_u2.a"]
261set want "(Contents of section .idata\\\$6:.*\\.\\.something\\..*){2,2}"
262
263if [regexp $want $got] then {
264 pass "dlltool -p (import name leading underscore) alias-2.def"
265} else {
266 fail "dlltool -p (import name leading underscore) alias-2.def"
267}
This page took 0.606688 seconds and 4 git commands to generate.