2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / lib / libffi-dg.exp
blob8db38c286a833a24e6ebe62888e2aa9b258131aa
1 # Copyright (C) 2003, 2005, 2009 Free Software Foundation, Inc.
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 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
17 proc load_gcc_lib { filename } {
18 global srcdir
19 load_file $srcdir/../../gcc/testsuite/lib/$filename
22 load_lib dg.exp
23 load_lib libgloss.exp
24 load_gcc_lib target-libpath.exp
25 load_gcc_lib wrapper.exp
28 # Define libffi callbacks for dg.exp.
30 proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
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
42 if { [llength $output_match] > 1 } {
43 regsub -all "\n" [lindex $output_match 1] "\r?\n" x
44 set output_match [lreplace $output_match 1 1 $x]
47 # Set up the compiler flags, based on what we're going to do.
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"
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.
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;
71 default {
72 perror "$do_what: not a valid dg-do keyword"
73 return ""
77 if { $extra_tool_flags != "" } {
78 lappend options "additional_flags=$extra_tool_flags"
81 set comp_output [libffi_target_compile "$prog" "$output_file" "$compile_type" $options];
84 return [list $comp_output $output_file]
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]
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
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"
110 set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
111 if {$gccdir != ""} {
112 set gccdir [file dirname $gccdir]
114 verbose "gccdir $gccdir"
116 set ld_library_path "."
117 append ld_library_path ":${gccdir}"
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
128 if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
129 append ld_library_path ":${gccdir}/${mldir}"
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"
138 verbose "ld_library_path: $ld_library_path"
140 # Point to the Libffi headers in libffi.
141 set libffi_include "${blddirffi}/include"
142 verbose "libffi_include $libffi_include"
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"
152 set_ld_library_path_env_vars
153 libffi_maybe_build_wrapper "${objdir}/testglue.o"
156 proc libffi_exit { } {
157 global gluefile;
159 if [info exists gluefile] {
160 file_on_build delete $gluefile;
161 unset gluefile;
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
175 if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
176 lappend options "libs=${gluefile}"
177 lappend options "ldflags=$wrap_flags"
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];
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}"
190 # Darwin needs a stack execution allowed flag.
192 if { [istarget "*-*-darwin9*"] || [istarget "*-*-darwin1*"]
193 || [istarget "*-*-darwin2*"] } {
194 lappend options "additional_flags=-Wl,-allow_stack_execute"
197 # If you're building the compiler with --prefix set to a place
198 # where it's not yet installed, then the linker won't be able to
199 # find the libgcc used by libffi.dylib. We could pass the
200 # -dylib_file option, but that's complicated, and it's much easier
201 # to just make the linker find libgcc using -L options.
202 if { [string match "*-*-darwin*" $target_triplet] } {
203 lappend options "libs= -shared-libgcc"
206 lappend options "libs= -lffi"
208 verbose "options: $options"
209 return [target_compile $source $dest $type $options]
212 # Utility routines.
215 # search_for -- looks for a string match in a file
217 proc search_for { file pattern } {
218 set fd [open $file r]
219 while { [gets $fd cur_line]>=0 } {
220 if [string match "*$pattern*" $cur_line] then {
221 close $fd
222 return 1
225 close $fd
226 return 0
229 # Modified dg-runtest that can cycle through a list of optimization options
230 # as c-torture does.
231 proc libffi-dg-runtest { testcases default-extra-flags } {
232 global runtests
234 foreach test $testcases {
235 # If we're only testing specific files and this isn't one of
236 # them, skip it.
237 if ![runtest_file_p $runtests $test] {
238 continue
241 # Look for a loop within the source code - if we don't find one,
242 # don't pass -funroll[-all]-loops.
243 global torture_with_loops torture_without_loops
244 if [expr [search_for $test "for*("]+[search_for $test "while*("]] {
245 set option_list $torture_with_loops
246 } else {
247 set option_list $torture_without_loops
250 set nshort [file tail [file dirname $test]]/[file tail $test]
252 foreach flags $option_list {
253 verbose "Testing $nshort, $flags" 1
254 dg-test $test $flags ${default-extra-flags}
260 # Like check_conditional_xfail, but callable from a dg test.
262 proc dg-xfail-if { args } {
263 set args [lreplace $args 0 0]
264 set selector "target [join [lindex $args 1]]"
265 if { [dg-process-target $selector] == "S" } {
266 global compiler_conditional_xfail_data
267 set compiler_conditional_xfail_data $args
272 # We need to make sure that additional_files and additional_sources
273 # are both cleared out after every test. It is not enough to clear
274 # them out *before* the next test run because gcc-target-compile gets
275 # run directly from some .exp files (outside of any test). (Those
276 # uses should eventually be eliminated.)
278 # Because the DG framework doesn't provide a hook that is run at the
279 # end of a test, we must replace dg-test with a wrapper.
281 if { [info procs saved-dg-test] == [list] } {
282 rename dg-test saved-dg-test
284 proc dg-test { args } {
285 global additional_files
286 global additional_sources
287 global errorInfo
289 if { [ catch { eval saved-dg-test $args } errmsg ] } {
290 set saved_info $errorInfo
291 set additional_files ""
292 set additional_sources ""
293 error $errmsg $saved_info
295 set additional_files ""
296 set additional_sources ""
300 # Local Variables:
301 # tcl-indent-level:4
302 # End: