OSDN Git Service

bae4b6ec19b04264d81f7ef15b224b4b7272860e
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / lib / g++.exp
1 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17 # This file was written by Rob Savoye (rob@cygnus.com)
18 # Many modifications by Jeffrey Wheat (cassidy@cygnus.com)
19 # With modifications by Mike Stump <mrs@cygnus.com>.
20
21 #
22 # g++ support library routines
23 #
24
25 #
26 # GXX_UNDER_TEST is the compiler under test.
27 #
28
29
30 set gpp_compile_options ""
31
32 #
33 # g++_version -- extract and print the version number of the compiler
34 #
35 proc g++_version { } {
36     global GXX_UNDER_TEST
37     
38     # ignore any arguments after the command
39     set compiler [lindex $GXX_UNDER_TEST 0]
40     
41     # verify that the compiler exists
42     if { [is_remote host] || [which $compiler] != 0 } then {
43         set tmp [remote_exec host "$compiler -v"]
44         set status [lindex $tmp 0];
45         set output [lindex $tmp 1];
46         regexp "version.*$" $output version
47         if { $status == 0 && [info exists version] } then {
48             if [is_remote host] {
49                 clone_output "$compiler $version\n"
50             } else {
51                 clone_output "[which $compiler] $version\n"
52             }
53         } else {
54             clone_output "Couldn't determine version of [which $compiler]\n"
55         }
56     } else {
57         # compiler does not exist (this should have already been detected)
58         warning "$compiler does not exist"
59     }
60 }
61
62 #
63 # provide new versions of g++_include_flags and g++_link_flags (both
64 # originally from libgloss.exp) which know about the new gcc tree structure
65 #
66 proc g++_include_flags { args } {
67     global srcdir
68     global HAVE_LIBSTDCXX_V3
69     global TESTING_IN_BUILD_TREE
70
71     set flags ""
72
73     if { [is_remote host] || ! [info exists TESTING_IN_BUILD_TREE] } {
74       return "${flags}"
75     }
76
77     set dir [lookfor_file ${srcdir} libg++]
78     if { ${dir} != "" } {
79       append flags "-I${dir} -I${dir}/src "
80     }
81
82     set gccpath [get_multilibs ${args}]
83
84     if { ${HAVE_LIBSTDCXX_V3} } {
85       set odir_v3 [lookfor_file ${gccpath} libstdc++-v3]
86       append flags [exec sh ${odir_v3}/testsuite_flags --build-includes]
87     } else {
88       set odir_v2 [lookfor_file ${gccpath} libstdc++]
89       set sdir_v2 [lookfor_file ${srcdir} libstdc++]
90       append flags "-I${sdir_v2} -I${sdir_v2}/stl "
91     }
92
93     return "$flags"
94 }
95
96 proc g++_link_flags { args } {
97     global rootme
98     global srcdir
99     global ld_library_path
100
101     set gccpath [get_multilibs ${args}];
102     set libio_dir ""
103     set flags ""
104     set ld_library_path "."
105
106     if { $gccpath != "" } {
107       if [file exists "${gccpath}/lib/libstdc++.a"] {
108           append ld_library_path ":${gccpath}/lib"
109       }
110       if [file exists "${gccpath}/libg++/libg++.a"] {
111           append flags "-L${gccpath}/libg++ "
112           append ld_library_path ":${gccpath}/libg++"
113       }
114       if [file exists "${gccpath}/libstdc++/libstdc++.a"] {
115           append flags "-L${gccpath}/libstdc++ "
116           append ld_library_path ":${gccpath}/libstdc++"
117       }
118       if [file exists "${gccpath}/libstdc++-v3/src/.libs/libstdc++.a"] {
119           append flags " -L${gccpath}/libstdc++-v3/src/.libs "
120           append ld_library_path ":${gccpath}/libstdc++-v3/src/.libs"
121       }
122       if [file exists "${gccpath}/libiberty/libiberty.a"] {
123           append flags "-L${gccpath}/libiberty "
124       }
125       if [file exists "${gccpath}/librx/librx.a"] {
126           append flags "-L${gccpath}/librx "
127       }
128       append ld_library_path ":${rootme}"
129     } else {
130       global tool_root_dir;
131
132       set libgpp [lookfor_file ${tool_root_dir} libg++];
133       if { $libgpp != "" } {
134           append flags "-L${libgpp} ";
135           append ld_library_path ":${libgpp}"
136       }
137       set libstdcpp [lookfor_file ${tool_root_dir} libstdc++];
138       if { $libstdcpp != "" } {
139           append flags "-L${libstdcpp} ";
140           append ld_library_path ":${libstdcpp}"
141       }
142       set libiberty [lookfor_file ${tool_root_dir} libiberty];
143       if { $libiberty != "" } {
144           append flags "-L${libiberty} ";
145       }
146       set librx [lookfor_file ${tool_root_dir} librx];
147       if { $librx != "" } {
148           append flags "-L${librx} ";
149       }
150     }
151     return "$flags"
152 }
153
154 #
155 # g++_init -- called at the start of each subdir of tests
156 #
157
158 proc g++_init { args } {
159     global subdir
160     global gpp_initialized
161     global base_dir
162     global tmpdir
163     global libdir
164     global gluefile wrap_flags;
165     global objdir srcdir
166     global ALWAYS_CXXFLAGS
167     global TOOL_EXECUTABLE TOOL_OPTIONS
168     global GXX_UNDER_TEST
169     global TESTING_IN_BUILD_TREE
170
171     if ![info exists GXX_UNDER_TEST] then {
172         if [info exists TOOL_EXECUTABLE] {
173             set GXX_UNDER_TEST $TOOL_EXECUTABLE;
174         } else {
175             if { [is_remote host] || ! [info exists TESTING_IN_BUILD_TREE] } {
176                 set GXX_UNDER_TEST [transform c++]
177             } else {
178                 set GXX_UNDER_TEST [findfile $base_dir/../g++ "$base_dir/../g++ -B$base_dir/../" [findfile $base_dir/g++ "$base_dir/g++ -B$base_dir/" [transform c++]]]
179             }
180         }
181     }
182
183     # Bleah, nasty. Bad taste.
184     if [ishost "*-dos-*" ] {
185         regsub "c\\+\\+" "$GXX_UNDER_TEST" "gcc" GXX_UNDER_TEST
186     }
187
188     if ![is_remote host] {
189         if { [which $GXX_UNDER_TEST] == 0 } then {
190             perror "GXX_UNDER_TEST ($GXX_UNDER_TEST) does not exist"
191             exit 1
192         }
193     }
194     if ![info exists tmpdir] {
195         set tmpdir "/tmp"
196     }
197
198     if [info exists gluefile] {
199         unset gluefile
200     }
201
202     if { [target_info needs_status_wrapper] != "" } {
203         set gluefile ${tmpdir}/testglue.o;
204         set result [build_wrapper $gluefile];
205         if { $result != "" } {
206             set gluefile [lindex $result 0];
207             set wrap_flags [lindex $result 1];
208         } else {
209             unset gluefile
210         }
211     }
212
213     set ALWAYS_CXXFLAGS ""
214
215     if ![is_remote host] {
216         if [info exists TOOL_OPTIONS] {
217             lappend ALWAYS_CXXFLAGS "additional_flags=[g++_include_flags ${TOOL_OPTIONS}]";
218             lappend ALWAYS_CXXFLAGS "ldflags=[g++_link_flags ${TOOL_OPTIONS}]";
219         } else {
220             lappend ALWAYS_CXXFLAGS "additional_flags=[g++_include_flags]";
221             lappend ALWAYS_CXXFLAGS "ldflags=[g++_link_flags]";
222         }
223     }
224
225     if [info exists TOOL_OPTIONS] {
226         lappend ALWAYS_CXXFLAGS "additional_flags=$TOOL_OPTIONS";
227     }
228
229     # Make sure that lines are not wrapped.  That can confuse the
230     # error-message parsing machinery.
231     lappend ALWAYS_CXXFLAGS "additional_flags=-fmessage-length=0"
232
233     verbose -log "ALWAYS_CXXFLAGS set to $ALWAYS_CXXFLAGS"
234
235     verbose "g++ is initialized" 3
236 }
237
238
239 proc g++_target_compile { source dest type options } {
240     global tmpdir;
241     global gpp_compile_options
242     global gluefile wrap_flags
243     global ALWAYS_CXXFLAGS;
244     global GXX_UNDER_TEST;
245
246     if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
247         lappend options "libs=${gluefile}"
248         lappend options "ldflags=${wrap_flags}"
249     }
250
251     lappend options "additional_flags=[libio_include_flags]"
252     lappend options "compiler=$GXX_UNDER_TEST";
253
254     set options [concat $gpp_compile_options $options]
255
256     set options [concat "$ALWAYS_CXXFLAGS" $options];
257
258     if { [regexp "(^| )-frepo( |$)" $options] && \
259          [regexp "\.o(|bj)$" $dest] } then {
260         regsub "\.o(|bj)$" $dest ".rpo" rponame
261         exec rm -f $rponame
262     }
263
264     return [target_compile $source $dest $type $options]
265 }
266
267 proc g++_exit { args } {
268     global gluefile;
269
270     if [info exists gluefile] {
271         file_on_build delete $gluefile;
272         unset gluefile;
273     }
274 }
275
276 # If this is an older version of dejagnu (without runtest_file_p),
277 # provide one and assume the old syntax: foo1.exp bar1.c foo2.exp bar2.c.
278 # This can be deleted after the next dejagnu release.
279
280 if { [info procs runtest_file_p] == "" } then {
281     proc runtest_file_p { runtests testcase } {
282         if { $runtests != "" && [regexp "\[.\]\[cC\]" $runtests] } then {
283             if { [lsearch $runtests [file tail $testcase]] >= 0 } then {
284                 return 1
285             } else {
286                 return 0
287             }
288         }
289         return 1
290     }
291 }
292
293 # Provide a definition of this if missing (delete after next dejagnu release).
294
295 if { [info procs prune_warnings] == "" } then {
296     proc prune_warnings { text } {
297         return $text
298     }
299 }
300
301 # On IRIX 6, we have to set variables akin to LD_LIBRARY_PATH, but
302 # called LD_LIBRARYN32_PATH (for the N32 ABI) and LD_LIBRARY64_PATH
303 # (for the 64-bit ABI).  The right way to do this would be to modify
304 # unix.exp -- but that's not an option since it's part of DejaGNU
305 # proper, so we do it here, by trickery.  We really only need to do 
306 # this on IRIX, but it shouldn't hurt to do it anywhere else.
307
308 proc g++_set_ld_library_path { name element op } {
309   setenv LD_LIBRARYN32_PATH [getenv LD_LIBRARY_PATH]
310   setenv LD_LIBRARY64_PATH [getenv LD_LIBRARY_PATH]
311 }
312
313 trace variable env(LD_LIBRARY_PATH) w g++_set_ld_library_path
314
315 # Utility used by mike-g++.exp and old-dejagnu.exp.
316 # Check the compiler(/assembler/linker) output for text indicating that
317 # the testcase should be marked as "unsupported".
318 #
319 # When dealing with a large number of tests, it's difficult to weed out the
320 # ones that are too big for a particular cpu (eg: 16 bit with a small amount
321 # of memory).  There are various ways to deal with this.  Here's one.
322 # Fortunately, all of the cases where this is likely to happen will be using
323 # gld so we can tell what the error text will look like.
324
325 proc ${tool}_check_unsupported_p { output } {
326     if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $output] {
327         return "memory full"
328     }
329     return ""
330 }
331
332 proc ${tool}_option_help { } {
333     send_user "--additional_options,OPTIONS\t\tUse OPTIONS to compile the testcase files. OPTIONS should be comma-separated."
334 }
335
336 proc ${tool}_option_proc { option } {
337     if [regexp "^--additional_options," $option] {
338         global gpp_compile_options
339         regsub "--additional_options," $option "" option
340         foreach x [split $option ","] {
341             lappend gpp_compile_options "additional_flags=$x"
342         }
343         return 1;
344     } else {
345         return 0
346     }
347 }