OSDN Git Service

* testsuite/lib/libffi-dg.exp (libffi-dg-test-1): Replace \n with
[pf3gnuchains/gcc-fork.git] / libffi / testsuite / lib / libffi-dg.exp
1 #   Copyright (C) 2003 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 2 of the License, or
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
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17 proc load_gcc_lib { filename } {
18     global srcdir
19     load_file $srcdir/../../gcc/testsuite/lib/$filename
20 }
21
22 load_lib dg.exp
23 load_lib libgloss.exp
24 load_gcc_lib target-libpath.exp
25 load_gcc_lib wrapper.exp
26
27
28 # Define libffi callbacks for dg.exp.
29
30 proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
31
32     # To get all \n in dg-output test strings to match printf output
33     # in a system that outputs it as \015\012 (i.e. not just \012), we
34     # need to change all \n into \r?\n.  As there is no dejagnu flag
35     # or hook to do that, we simply change the text being tested.
36     # Unfortunately, we have to know that the variable is called
37     # dg-output-text and lives in the caller of libffi-dg-test, which
38     # is two calls up.  Overriding proc dg-output would be longer and
39     # would necessarily have the same assumption.
40     upvar 2 dg-output-text output_match
41
42     if { [llength $output_match] > 1 } {
43         set x [regsub -all "\n" [lindex $output_match 1] "\r?\n"]
44         set output_match [lreplace $output_match 1 1 $x]
45     }
46
47     # Set up the compiler flags, based on what we're going to do.
48
49     set options [list]
50     switch $do_what {
51         "compile" {
52             set compile_type "assembly"
53             set output_file "[file rootname [file tail $prog]].s"
54         }
55         "link" {
56             set compile_type "executable"
57             set output_file "[file rootname [file tail $prog]].exe"
58             # The following line is needed for targets like the i960 where
59             # the default output file is b.out.  Sigh.
60         }
61         "run" {
62             set compile_type "executable"
63             # FIXME: "./" is to cope with "." not being in $PATH.
64             # Should this be handled elsewhere?
65             # YES.
66             set output_file "./[file rootname [file tail $prog]].exe"
67             # This is the only place where we care if an executable was
68             # created or not.  If it was, dg.exp will try to run it.
69             remote_file build delete $output_file;
70         }
71         default {
72             perror "$do_what: not a valid dg-do keyword"
73             return ""
74         }
75     }
76
77     if { $extra_tool_flags != "" } {
78         lappend options "additional_flags=$extra_tool_flags"
79     }
80
81     set comp_output [libffi_target_compile "$prog" "$output_file" "$compile_type" $options];
82
83
84     return [list $comp_output $output_file]
85 }
86
87
88 proc libffi-dg-test { prog do_what extra_tool_flags } {
89     return [libffi-dg-test-1 target_compile $prog $do_what $extra_tool_flags]
90 }
91
92 proc libffi-init { args } {
93     global gluefile wrap_flags;
94     global srcdir
95     global blddirffi
96     global objdir
97     global blddircxx
98     global TOOL_OPTIONS
99     global tool
100     global libffi_include
101     global libffi_link_flags
102     global tool_root_dir
103     global ld_library_path
104
105     set blddirffi [lookfor_file [get_multilibs] libffi]
106     verbose "libffi $blddirffi"
107     set blddircxx [lookfor_file [get_multilibs] libstdc++-v3]
108     verbose "libstdc++ $blddircxx"
109
110     set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
111     if {$gccdir != ""} {
112         set gccdir [file dirname $gccdir]
113     }
114     verbose "gccdir $gccdir"
115
116     set ld_library_path "."
117     append ld_library_path ":${gccdir}"
118
119     set compiler "${gccdir}/xgcc"
120     if { [is_remote host] == 0 && [which $compiler] != 0 } {
121         foreach i "[exec $compiler --print-multi-lib]" {
122             set mldir ""
123             regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
124             set mldir [string trimright $mldir "\;@"]
125             if { "$mldir" == "." } {
126                 continue
127             }
128             if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
129                 append ld_library_path ":${gccdir}/${mldir}"
130             }
131         }
132     }
133     # add the library path for libffi.
134     append ld_library_path ":${blddirffi}/.libs"
135     # add the library path for libstdc++ as well.
136     append ld_library_path ":${blddircxx}/src/.libs"
137
138     verbose "ld_library_path: $ld_library_path"
139
140     # Point to the Libffi headers in libffi.
141     set libffi_include "${blddirffi}/include"
142     verbose "libffi_include $libffi_include"
143
144     set libffi_dir  "${blddirffi}/.libs"
145     verbose "libffi_dir $libffi_dir"
146     if { $libffi_dir != "" } {
147         set libffi_dir [file dirname ${libffi_dir}]
148         set libffi_link_flags "-L${libffi_dir}/.libs"
149         lappend libffi_link_flags "-L${blddircxx}/src/.libs"
150     }
151
152     set_ld_library_path_env_vars
153     libffi_maybe_build_wrapper "${objdir}/testglue.o"
154 }
155
156 proc libffi_exit { } {
157     global gluefile;
158
159     if [info exists gluefile] {
160         file_on_build delete $gluefile;
161         unset gluefile;
162     }
163 }
164
165 proc libffi_target_compile { source dest type options } {
166     global gluefile wrap_flags;
167     global srcdir
168     global blddirffi
169     global TOOL_OPTIONS
170     global libffi_link_flags
171     global libffi_include
172     global target_triplet
173
174
175     if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
176         lappend options "libs=${gluefile}"
177         lappend options "ldflags=$wrap_flags"
178     }
179
180     # TOOL_OPTIONS must come first, so that it doesn't override testcase
181     # specific options.
182     if [info exists TOOL_OPTIONS] {
183         lappend  options [concat "additional_flags=$TOOL_OPTIONS" $options];
184     }
185
186     # search for ffi_mips.h in srcdir, too
187     lappend options "additional_flags=-I${libffi_include} -I${srcdir}/../include  -I${libffi_include}/.."
188     lappend options "additional_flags=${libffi_link_flags}"
189
190     if { [string match "powerpc-*-darwin*" $target_triplet] } {
191         lappend options "libs= -lgcc_s"
192     }
193
194     lappend options "libs= -lffi"
195
196     verbose "options: $options"
197     return [target_compile $source $dest $type $options]
198 }
199
200 # Utility routines.
201
202 #
203 # search_for -- looks for a string match in a file
204 #
205 proc search_for { file pattern } {
206     set fd [open $file r]
207     while { [gets $fd cur_line]>=0 } {
208         if [string match "*$pattern*" $cur_line] then {
209             close $fd
210             return 1
211         }
212     }
213     close $fd
214     return 0
215 }
216
217 # Modified dg-runtest that can cycle through a list of optimization options
218 # as c-torture does.
219 proc libffi-dg-runtest { testcases default-extra-flags } {
220     global runtests
221
222     foreach test $testcases {
223         # If we're only testing specific files and this isn't one of
224         # them, skip it.
225         if ![runtest_file_p $runtests $test] {
226             continue
227         }
228
229         # Look for a loop within the source code - if we don't find one,
230         # don't pass -funroll[-all]-loops.
231         global torture_with_loops torture_without_loops
232         if [expr [search_for $test "for*("]+[search_for $test "while*("]] {
233             set option_list $torture_with_loops
234         } else {
235             set option_list $torture_without_loops
236         }
237
238         set nshort [file tail [file dirname $test]]/[file tail $test]
239
240         foreach flags $option_list {
241             verbose "Testing $nshort, $flags" 1
242             dg-test $test $flags ${default-extra-flags}
243         }
244     }
245 }
246
247
248 # Like check_conditional_xfail, but callable from a dg test.
249
250 proc dg-xfail-if { args } {
251     set args [lreplace $args 0 0]
252     set selector "target [join [lindex $args 1]]"
253     if { [dg-process-target $selector] == "S" } {
254         global compiler_conditional_xfail_data
255         set compiler_conditional_xfail_data $args
256     }
257 }
258
259
260 # We need to make sure that additional_files and additional_sources
261 # are both cleared out after every test.  It is not enough to clear
262 # them out *before* the next test run because gcc-target-compile gets
263 # run directly from some .exp files (outside of any test).  (Those
264 # uses should eventually be eliminated.)
265
266 # Because the DG framework doesn't provide a hook that is run at the
267 # end of a test, we must replace dg-test with a wrapper.
268
269 if { [info procs saved-dg-test] == [list] } {
270     rename dg-test saved-dg-test
271
272     proc dg-test { args } {
273         global additional_files
274         global additional_sources
275         global errorInfo
276
277         if { [ catch { eval saved-dg-test $args } errmsg ] } {
278             set saved_info $errorInfo
279             set additional_files ""
280             set additional_sources ""
281             error $errmsg $saved_info
282         }
283         set additional_files ""
284         set additional_sources ""
285     }
286 }
287
288 # Local Variables:
289 # tcl-indent-level:4
290 # End: