Update Copyright years for files modified in 2010.
[official-gcc.git] / gcc / testsuite / lib / objc.exp
blobae0671f9e19cc2e6d37b114c12bacecf55b820a6
1 # Copyright (C) 1992, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2004, 2005,
2 # 2007, 2008, 2010 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3. If not see
16 # <http://www.gnu.org/licenses/>.
18 # This file was written by Rob Savoye (rob@cygnus.com)
19 # Currently maintained by Doug Evans (dje@cygnus.com)
21 # This file is loaded by the tool init file (eg: unix.exp). It provides
22 # default definitions for objc_start, etc. and other supporting cast members.
24 # These globals are used by objc_start if no compiler arguments are provided.
25 # They are also used by the various testsuites to define the environment:
26 # where to find stdio.h, libc.a, etc.
28 load_lib libgloss.exp
29 load_lib prune.exp
30 load_lib gcc-defs.exp
31 load_lib timeout.exp
32 load_lib target-libpath.exp
35 # OBJC_UNDER_TEST is the compiler under test.
39 # default_objc_version -- extract and print the version number of the compiler
42 proc default_objc_version { } {
43 global OBJC_UNDER_TEST
45 objc_init
47 # Ignore any arguments after the command.
48 set compiler [lindex $OBJC_UNDER_TEST 0]
50 if ![is_remote host] {
51 set compiler_name [which $compiler]
52 } else {
53 set compiler_name $compiler
56 # Verify that the compiler exists.
57 if { $compiler_name != 0 } then {
58 set tmp [remote_exec host "$compiler -v"]
59 set status [lindex $tmp 0]
60 set output [lindex $tmp 1]
61 regexp " version \[^\n\r\]*" $output version
62 if { $status == 0 && [info exists version] } then {
63 clone_output "$compiler_name $version\n"
64 } else {
65 clone_output "Couldn't determine version of $compiler_name: $output\n"
67 } else {
68 # Compiler does not exist (this should have already been detected).
69 warning "$compiler does not exist"
74 # Call objc_version. We do it this way so we can override it if needed.
76 proc objc_version { } {
77 default_objc_version
81 # objc_init -- called at the start of each .exp script.
83 # There currently isn't much to do, but always using it allows us to
84 # make some enhancements without having to go back and rewrite the scripts.
87 set objc_initialized 0
89 proc objc_init { args } {
90 global rootme
91 global tmpdir
92 global libdir
93 global gluefile wrap_flags
94 global objc_initialized
95 global OBJC_UNDER_TEST
96 global TOOL_EXECUTABLE
97 global objc_libgcc_s_path
98 global gcc_warning_prefix
99 global gcc_error_prefix
101 # We set LC_ALL and LANG to C so that we get the same error messages as
102 # expected.
103 setenv LC_ALL C
104 setenv LANG C
106 # Many hosts now default to a non-ASCII C locale, however, so
107 # they can set a charset encoding here if they need.
108 if { [ishost "*-*-cygwin*"] } {
109 setenv LC_ALL C.ASCII
110 setenv LANG C.ASCII
113 if { $objc_initialized == 1 } { return; }
115 if ![info exists OBJC_UNDER_TEST] then {
116 if [info exists TOOL_EXECUTABLE] {
117 set OBJC_UNDER_TEST $TOOL_EXECUTABLE
118 } else {
119 set OBJC_UNDER_TEST [find_gcc]
123 if ![info exists tmpdir] then {
124 set tmpdir /tmp
127 set gcc_warning_prefix "warning:"
128 set gcc_error_prefix "error:"
130 objc_maybe_build_wrapper "${tmpdir}/objc-testglue.o"
132 set objc_libgcc_s_path [gcc-set-multilib-library-path $OBJC_UNDER_TEST]
135 proc objc_target_compile { source dest type options } {
136 global rootme
137 global tmpdir
138 global gluefile wrap_flags
139 global srcdir
140 global OBJC_UNDER_TEST
141 global TOOL_OPTIONS
142 global ld_library_path
143 global objc_libgcc_s_path
144 global shlib_ext
146 set shlib_ext [get_shlib_extension]
147 set ld_library_path ".:${objc_libgcc_s_path}"
149 # We have to figure out which runtime will be used on darwin because
150 # we need to add the include path for the gnu runtime if that is in
151 # use.
152 # First set the default...
153 if { [istarget "*-*-darwin*"] } {
154 set nextruntime 1
155 } else {
156 set nextruntime 0
158 verbose "initial next runtime state : $nextruntime" 2
159 # Next, see if we define the option in dg-options...
160 foreach opt $options {
161 if [regexp ".*-fnext-runtime.*" $opt] {
162 set nextruntime 1
164 if [regexp ".*-fgnu-runtime.*" $opt] {
165 set nextruntime 0
168 verbose "next runtime state after dg opts: $nextruntime" 2
170 set tgt [target_info name]
171 if [board_info $tgt exists multilib_flags] {
172 set lb [board_info $tgt multilib_flags]
173 verbose "board multilib_flags $lb" 2
174 foreach opt $lb {
175 if [regexp ".*-fnext-runtime.*" $opt] {
176 set nextruntime 1
178 if [regexp ".*-fgnu-runtime.*" $opt] {
179 set nextruntime 0
183 verbose "next runtime state after any multilib opts: $nextruntime" 2
185 lappend options "libs=-lobjc"
186 verbose "shared lib extension: $shlib_ext" 3
188 if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
189 lappend options "libs=${gluefile}"
190 lappend options "ldflags=$wrap_flags"
193 if [target_info exists objc,stack_size] {
194 lappend options "additional_flags=-DSTACK_SIZE=[target_info objc,stack_size]"
196 if [target_info exists objc,no_trampolines] {
197 lappend options "additional_flags=-DNO_TRAMPOLINES"
199 if [target_info exists objc,no_label_values] {
200 lappend options "additional_flags=-DNO_LABEL_VALUES"
202 # TOOL_OPTIONS must come first, so that it doesn't override testcase
203 # specific options.
204 if [info exists TOOL_OPTIONS] {
205 set options [concat "{additional_flags=$TOOL_OPTIONS}" $options]
208 # If we have built libobjc along with the compiler, point the test harness
209 # at it (and associated headers).
211 set objcpath "[get_multilibs]"
213 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc.a]
214 if { $libobjc_dir == "" } {
215 # On darwin there is, potentially, a gnu runtime too.
216 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.a]
218 # Perhaps we didn't build static libs.
219 if { $libobjc_dir == "" } {
220 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc.${shlib_ext}]
221 # On darwin there is, potentially, a gnu runtime too.
222 if { $libobjc_dir == "" } {
223 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.${shlib_ext}]
227 if { $libobjc_dir != "" } {
228 # If we are using the gnu runtime, add its includes.
229 if { $nextruntime == 0 } {
230 set objc_include_dir "${srcdir}/../../libobjc"
231 lappend options "additional_flags=-I${objc_include_dir}"
232 verbose "adding gnu runtime include dir: $objc_include_dir "
234 set libobjc_dir [file dirname ${libobjc_dir}]
235 # Allow for %s spec substitutions..
236 set objc_link_flags " -B${libobjc_dir} "
237 lappend options "additional_flags=${objc_link_flags}"
238 set objc_link_flags " -L${libobjc_dir} "
239 lappend options "additional_flags=${objc_link_flags}"
240 append ld_library_path ":${libobjc_dir}"
242 if { $type == "precompiled_header" } {
243 # If we generating a precompiled header, we have say this is an
244 # objective-C header.
245 set source [concat "-x objective-c-header" $source]
247 lappend options "compiler=$OBJC_UNDER_TEST"
248 lappend options "timeout=[timeout_value]"
250 set_ld_library_path_env_vars
252 set options [dg-additional-files-options $options $source]
254 return [target_compile $source $dest $type $options]
258 # objc_pass -- utility to record a testcase passed.
261 proc objc_pass { testcase cflags } {
262 if { "$cflags" == "" } {
263 pass "$testcase"
264 } else {
265 pass "$testcase, $cflags"
270 # objc_fail -- utility to record a testcase failed
273 proc objc_fail { testcase cflags } {
274 if { "$cflags" == "" } {
275 fail "$testcase"
276 } else {
277 fail "$testcase, $cflags"
282 # objc_finish -- called at the end of every .exp script that calls objc_init
284 # The purpose of this proc is to hide all quirks of the testing environment
285 # from the testsuites. It also exists to undo anything that objc_init did
286 # (that needs undoing).
289 proc objc_finish { } {
290 # The testing harness apparently requires this.
291 global errorInfo
293 if [info exists errorInfo] then {
294 unset errorInfo
297 # Might as well reset these (keeps our caller from wondering whether
298 # s/he has to or not).
299 global prms_id bug_id
300 set prms_id 0
301 set bug_id 0
304 proc objc_exit { } {
305 global gluefile
307 if [info exists gluefile] {
308 file_on_build delete $gluefile
309 unset gluefile
313 # If this is an older version of dejagnu (without runtest_file_p),
314 # provide one and assume the old syntax: foo1.exp bar1.c foo2.exp bar2.c.
315 # This can be deleted after next dejagnu release.
317 if { [info procs runtest_file_p] == "" } then {
318 proc runtest_file_p { runtests testcase } {
319 if { $runtests != "" && [regexp "\[.\]\[cC\]" $runtests] } then {
320 if { [lsearch $runtests [file tail $testcase]] >= 0 } then {
321 return 1
322 } else {
323 return 0
326 return 1
330 # Provide a definition of this if missing (delete after next dejagnu release).
332 if { [info procs prune_warnings] == "" } then {
333 proc prune_warnings { text } {
334 return $text
338 # Utility used by mike-gcc.exp and c-torture.exp.
339 # Check the compiler(/assembler/linker) output for text indicating that
340 # the testcase should be marked as "unsupported".
342 # When dealing with a large number of tests, it's difficult to weed out the
343 # ones that are too big for a particular cpu (eg: 16 bit with a small amount
344 # of memory). There are various ways to deal with this. Here's one.
345 # Fortunately, all of the cases where this is likely to happen will be using
346 # gld so we can tell what the error text will look like.
348 proc ${tool}_check_unsupported_p { output } {
349 if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $output] {
350 return "memory full"
352 return ""
355 # Prune messages from objc that aren't useful.
357 proc prune_objc_output { text } {
358 #send_user "Before:$text\n"
359 regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\n\]*" $text "" text
360 regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text
362 # It would be nice to avoid passing anything to objc that would cause it to
363 # issue these messages (since ignoring them seems like a hack on our part),
364 # but that's too difficult in the general case. For example, sometimes
365 # you need to use -B to point objc at crt0.o, but there are some targets
366 # that don't have crt0.o.
367 regsub -all "(^|\n)\[^\n\]*file path prefix \[^\n\]* never used" $text "" text
368 regsub -all "(^|\n)\[^\n\]*linker input file unused since linking not done" $text "" text
370 #send_user "After:$text\n"
372 return $text