OSDN Git Service

Index: gcc/gcc/ChangeLog
[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]
83
84     if { ${HAVE_LIBSTDCXX_V3} } {
85       set odir_v3 [lookfor_file ${gccpath} libstdc++-v3]
86       set sdir_v3 [lookfor_file ${srcdir} libstdc++-v3]
87       append flags [exec sh ${odir_v3}/tests_flags --compiler ${odir_v3} ${sdir_v3}]
88     } else {
89       set odir_v2 [lookfor_file ${gccpath} libstdc++]
90       set sdir_v2 [lookfor_file ${srcdir} libstdc++]
91       append flags "-I${sdir_v2} -I${sdir_v2}/stl "
92     }
93
94     return "$flags"
95 }
96
97 proc g++_link_flags { args } {
98     global rootme
99     global srcdir
100     global ld_library_path
101
102     set gccpath [get_multilibs];
103     set libio_dir ""
104     set flags ""
105     set ld_library_path "."
106
107     if { $gccpath != "" } {
108       if [file exists "${gccpath}/lib/libstdc++.a"] {
109           append ld_library_path ":${gccpath}/lib"
110       }
111       if [file exists "${gccpath}/libg++/libg++.a"] {
112           append flags "-L${gccpath}/libg++ "
113           append ld_library_path ":${gccpath}/libg++"
114       }
115       if [file exists "${gccpath}/libstdc++/libstdc++.a"] {
116           append flags "-L${gccpath}/libstdc++ "
117           append ld_library_path ":${gccpath}/libstdc++"
118       }
119       if [file exists "${gccpath}/libstdc++-v3/src/.libs/libstdc++.a"] {
120           append flags " -L${gccpath}/libstdc++-v3/src/.libs "
121           append ld_library_path ":${gccpath}/libstdc++-v3/src/.libs"
122       }
123       if [file exists "${gccpath}/libiberty/libiberty.a"] {
124           append flags "-L${gccpath}/libiberty "
125       }
126       if [file exists "${gccpath}/librx/librx.a"] {
127           append flags "-L${gccpath}/librx "
128       }
129       append ld_library_path ":${rootme}"
130     } else {
131       global tool_root_dir;
132
133       set libgpp [lookfor_file ${tool_root_dir} libg++];
134       if { $libgpp != "" } {
135           append flags "-L${libgpp} ";
136           append ld_library_path ":${libgpp}"
137       }
138       set libstdcpp [lookfor_file ${tool_root_dir} libstdc++];
139       if { $libstdcpp != "" } {
140           append flags "-L${libstdcpp} ";
141           append ld_library_path ":${libstdcpp}"
142       }
143       set libiberty [lookfor_file ${tool_root_dir} libiberty];
144       if { $libiberty != "" } {
145           append flags "-L${libiberty} ";
146       }
147       set librx [lookfor_file ${tool_root_dir} librx];
148       if { $librx != "" } {
149           append flags "-L${librx} ";
150       }
151     }
152     return "$flags"
153 }
154
155 #
156 # g++_init -- called at the start of each subdir of tests
157 #
158
159 proc g++_init { args } {
160     global subdir
161     global gpp_initialized
162     global base_dir
163     global tmpdir
164     global libdir
165     global gluefile wrap_flags;
166     global objdir srcdir
167     global ALWAYS_CXXFLAGS
168     global TOOL_EXECUTABLE TOOL_OPTIONS
169     global GXX_UNDER_TEST
170     global TESTING_IN_BUILD_TREE
171
172     if ![info exists GXX_UNDER_TEST] then {
173         if [info exists TOOL_EXECUTABLE] {
174             set GXX_UNDER_TEST $TOOL_EXECUTABLE;
175         } else {
176             if { [is_remote host] || ! [info exists TESTING_IN_BUILD_TREE] } {
177                 set GXX_UNDER_TEST [transform c++]
178             } else {
179                 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++]]]
180             }
181         }
182     }
183
184     # Bleah, nasty. Bad taste.
185     if [ishost "*-dos-*" ] {
186         regsub "c\\+\\+" "$GXX_UNDER_TEST" "gcc" GXX_UNDER_TEST
187     }
188
189     if ![is_remote host] {
190         if { [which $GXX_UNDER_TEST] == 0 } then {
191             perror "GXX_UNDER_TEST ($GXX_UNDER_TEST) does not exist"
192             exit 1
193         }
194     }
195     if ![info exists tmpdir] {
196         set tmpdir "/tmp"
197     }
198
199     if [info exists gluefile] {
200         unset gluefile
201     }
202
203     if { [target_info needs_status_wrapper] != "" } {
204         set gluefile ${tmpdir}/testglue.o;
205         set result [build_wrapper $gluefile];
206         if { $result != "" } {
207             set gluefile [lindex $result 0];
208             set wrap_flags [lindex $result 1];
209         } else {
210             unset gluefile
211         }
212     }
213
214     set ALWAYS_CXXFLAGS ""
215
216     if ![is_remote host] {
217         lappend ALWAYS_CXXFLAGS "additional_flags=[g++_include_flags]";
218         lappend ALWAYS_CXXFLAGS "ldflags=[g++_link_flags]";
219     }
220
221     if [info exists TOOL_OPTIONS] {
222         lappend ALWAYS_CXXFLAGS "additional_flags=$TOOL_OPTIONS";
223     }
224
225     # Make sure that lines are not wrapped.  That can confuse the
226     # error-message parsing machinery.
227     lappend ALWAYS_CXXFLAGS "additional_flags=-fmessage-length=0"
228
229     verbose -log "ALWAYS_CXXFLAGS set to $ALWAYS_CXXFLAGS"
230
231     verbose "g++ is initialized" 3
232 }
233
234
235 proc g++_target_compile { source dest type options } {
236     global tmpdir;
237     global gpp_compile_options
238     global gluefile wrap_flags
239     global ALWAYS_CXXFLAGS;
240     global GXX_UNDER_TEST;
241
242     if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
243         lappend options "libs=${gluefile}"
244         lappend options "ldflags=${wrap_flags}"
245     }
246
247     lappend options "additional_flags=[libio_include_flags]"
248     lappend options "compiler=$GXX_UNDER_TEST";
249
250     set options [concat $gpp_compile_options $options]
251
252     set options [concat "$ALWAYS_CXXFLAGS" $options];
253
254     if { [regexp "(^| )-frepo( |$)" $options] && \
255          [regexp "\.o(|bj)$" $dest] } then {
256         regsub "\.o(|bj)$" $dest ".rpo" rponame
257         exec rm -f $rponame
258     }
259
260     return [target_compile $source $dest $type $options]
261 }
262
263 proc g++_exit { args } {
264     global gluefile;
265
266     if [info exists gluefile] {
267         file_on_build delete $gluefile;
268         unset gluefile;
269     }
270 }
271
272 # If this is an older version of dejagnu (without runtest_file_p),
273 # provide one and assume the old syntax: foo1.exp bar1.c foo2.exp bar2.c.
274 # This can be deleted after the next dejagnu release.
275
276 if { [info procs runtest_file_p] == "" } then {
277     proc runtest_file_p { runtests testcase } {
278         if { $runtests != "" && [regexp "\[.\]\[cC\]" $runtests] } then {
279             if { [lsearch $runtests [file tail $testcase]] >= 0 } then {
280                 return 1
281             } else {
282                 return 0
283             }
284         }
285         return 1
286     }
287 }
288
289 # Provide a definition of this if missing (delete after next dejagnu release).
290
291 if { [info procs prune_warnings] == "" } then {
292     proc prune_warnings { text } {
293         return $text
294     }
295 }
296
297 # On IRIX 6, we have to set variables akin to LD_LIBRARY_PATH, but
298 # called LD_LIBRARYN32_PATH (for the N32 ABI) and LD_LIBRARY64_PATH
299 # (for the 64-bit ABI).  The right way to do this would be to modify
300 # unix.exp -- but that's not an option since it's part of DejaGNU
301 # proper, so we do it here, by trickery.  We really only need to do 
302 # this on IRIX, but it shouldn't hurt to do it anywhere else.
303
304 proc g++_set_ld_library_path { name element op } {
305   setenv LD_LIBRARYN32_PATH [getenv LD_LIBRARY_PATH]
306   setenv LD_LIBRARY64_PATH [getenv LD_LIBRARY_PATH]
307 }
308
309 trace variable env(LD_LIBRARY_PATH) w g++_set_ld_library_path
310
311 # Utility used by mike-g++.exp and old-dejagnu.exp.
312 # Check the compiler(/assembler/linker) output for text indicating that
313 # the testcase should be marked as "unsupported".
314 #
315 # When dealing with a large number of tests, it's difficult to weed out the
316 # ones that are too big for a particular cpu (eg: 16 bit with a small amount
317 # of memory).  There are various ways to deal with this.  Here's one.
318 # Fortunately, all of the cases where this is likely to happen will be using
319 # gld so we can tell what the error text will look like.
320
321 proc ${tool}_check_unsupported_p { output } {
322     if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $output] {
323         return "memory full"
324     }
325     return ""
326 }
327
328 proc ${tool}_option_help { } {
329     send_user "--additional_options,OPTIONS\t\tUse OPTIONS to compile the testcase files. OPTIONS should be comma-separated."
330 }
331
332 proc ${tool}_option_proc { option } {
333     if [regexp "^--additional_options," $option] {
334         global gpp_compile_options
335         regsub "--additional_options," $option "" option
336         foreach x [split $option ","] {
337             lappend gpp_compile_options "additional_flags=$x"
338         }
339         return 1;
340     } else {
341         return 0
342     }
343 }