]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/lib/objc.exp
Makefile.in (SYSROOT_CFLAGS_FOR_TARGET): Define from @SYSROOT_CFLAGS_FOR_TARGET@.
[thirdparty/gcc.git] / gcc / testsuite / lib / objc.exp
CommitLineData
cd976c16 1# Copyright (C) 1992, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2004, 2005,
d652f226 2# 2007, 2008, 2010 Free Software Foundation, Inc.
d636ae0b
OP
3
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
cd976c16 6# the Free Software Foundation; either version 3 of the License, or
d636ae0b 7# (at your option) any later version.
2e58f311 8#
d636ae0b
OP
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.
2e58f311 13#
d636ae0b 14# You should have received a copy of the GNU General Public License
cd976c16
NC
15# along with GCC; see the file COPYING3. If not see
16# <http://www.gnu.org/licenses/>.
d636ae0b
OP
17
18# This file was written by Rob Savoye (rob@cygnus.com)
19# Currently maintained by Doug Evans (dje@cygnus.com)
20
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.
23
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.
27
47ffd48a
SS
28load_lib libgloss.exp
29load_lib prune.exp
30load_lib gcc-defs.exp
d4038ca2 31load_lib timeout.exp
1df8e834 32load_lib target-libpath.exp
47ffd48a 33
d636ae0b
OP
34#
35# OBJC_UNDER_TEST is the compiler under test.
36#
37
38#
39# default_objc_version -- extract and print the version number of the compiler
40#
41
42proc default_objc_version { } {
43 global OBJC_UNDER_TEST
44
11289ef9 45 objc_init
d636ae0b 46
9debda96 47 # Ignore any arguments after the command.
d636ae0b
OP
48 set compiler [lindex $OBJC_UNDER_TEST 0]
49
50 if ![is_remote host] {
11289ef9 51 set compiler_name [which $compiler]
d636ae0b 52 } else {
11289ef9 53 set compiler_name $compiler
d636ae0b
OP
54 }
55
9debda96 56 # Verify that the compiler exists.
d636ae0b
OP
57 if { $compiler_name != 0 } then {
58 set tmp [remote_exec host "$compiler -v"]
11289ef9
BE
59 set status [lindex $tmp 0]
60 set output [lindex $tmp 1]
fb0737c2 61 regexp " version \[^\n\r\]*" $output version
d636ae0b
OP
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"
66 }
67 } else {
9debda96 68 # Compiler does not exist (this should have already been detected).
d636ae0b
OP
69 warning "$compiler does not exist"
70 }
71}
72
73#
74# Call objc_version. We do it this way so we can override it if needed.
75#
76proc objc_version { } {
11289ef9 77 default_objc_version
d636ae0b
OP
78}
79
80#
81# objc_init -- called at the start of each .exp script.
82#
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.
85#
86
87set objc_initialized 0
88
89proc objc_init { args } {
2937267b 90 global rootme
d636ae0b
OP
91 global tmpdir
92 global libdir
93 global gluefile wrap_flags
94 global objc_initialized
95 global OBJC_UNDER_TEST
96 global TOOL_EXECUTABLE
2937267b 97 global objc_libgcc_s_path
512e7d7f
DA
98 global gcc_warning_prefix
99 global gcc_error_prefix
d636ae0b 100
9debda96
IS
101 # We set LC_ALL and LANG to C so that we get the same error messages as
102 # expected.
690e11b8
AP
103 setenv LC_ALL C
104 setenv LANG C
105
17f35e23
DK
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
111 }
112
d636ae0b
OP
113 if { $objc_initialized == 1 } { return; }
114
115 if ![info exists OBJC_UNDER_TEST] then {
116 if [info exists TOOL_EXECUTABLE] {
11289ef9 117 set OBJC_UNDER_TEST $TOOL_EXECUTABLE
d636ae0b
OP
118 } else {
119 set OBJC_UNDER_TEST [find_gcc]
120 }
121 }
122
123 if ![info exists tmpdir] then {
124 set tmpdir /tmp
125 }
8800e533 126
512e7d7f
DA
127 set gcc_warning_prefix "warning:"
128 set gcc_error_prefix "error:"
129
8800e533 130 objc_maybe_build_wrapper "${tmpdir}/objc-testglue.o"
2937267b 131
33cde516 132 set objc_libgcc_s_path [gcc-set-multilib-library-path $OBJC_UNDER_TEST]
d636ae0b
OP
133}
134
135proc objc_target_compile { source dest type options } {
11289ef9
BE
136 global rootme
137 global tmpdir
138 global gluefile wrap_flags
bbeb33f2 139 global srcdir
d636ae0b
OP
140 global OBJC_UNDER_TEST
141 global TOOL_OPTIONS
822c7fe2 142 global ld_library_path
2937267b 143 global objc_libgcc_s_path
2e58f311 144 global shlib_ext
c875f596 145 global TEST_ALWAYS_FLAGS
9debda96
IS
146
147 set shlib_ext [get_shlib_extension]
33cde516 148 set ld_library_path ".:${objc_libgcc_s_path}"
9debda96
IS
149
150 # We have to figure out which runtime will be used on darwin because
151 # we need to add the include path for the gnu runtime if that is in
152 # use.
153 # First set the default...
19073ebc 154 if { [istarget *-*-darwin*] } {
9debda96
IS
155 set nextruntime 1
156 } else {
157 set nextruntime 0
158 }
159 verbose "initial next runtime state : $nextruntime" 2
160 # Next, see if we define the option in dg-options...
161 foreach opt $options {
162 if [regexp ".*-fnext-runtime.*" $opt] {
163 set nextruntime 1
164 }
165 if [regexp ".*-fgnu-runtime.*" $opt] {
166 set nextruntime 0
167 }
168 }
169 verbose "next runtime state after dg opts: $nextruntime" 2
170
171 set tgt [target_info name]
172 if [board_info $tgt exists multilib_flags] {
173 set lb [board_info $tgt multilib_flags]
174 verbose "board multilib_flags $lb" 2
175 foreach opt $lb {
176 if [regexp ".*-fnext-runtime.*" $opt] {
177 set nextruntime 1
178 }
179 if [regexp ".*-fgnu-runtime.*" $opt] {
180 set nextruntime 0
181 }
182 }
183 }
184 verbose "next runtime state after any multilib opts: $nextruntime" 2
185
d636ae0b 186 lappend options "libs=-lobjc"
9debda96 187 verbose "shared lib extension: $shlib_ext" 3
822c7fe2 188
d636ae0b
OP
189 if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
190 lappend options "libs=${gluefile}"
191 lappend options "ldflags=$wrap_flags"
192 }
193
194 if [target_info exists objc,stack_size] {
195 lappend options "additional_flags=-DSTACK_SIZE=[target_info objc,stack_size]"
196 }
197 if [target_info exists objc,no_trampolines] {
198 lappend options "additional_flags=-DNO_TRAMPOLINES"
199 }
200 if [target_info exists objc,no_label_values] {
201 lappend options "additional_flags=-DNO_LABEL_VALUES"
202 }
c875f596
DN
203
204 # TEST_ALWAYS_FLAGS are flags that should be passed to every
205 # compilation. They are passed first to allow individual
206 # tests to override them.
207 if [info exists TEST_ALWAYS_FLAGS] {
208 set options [concat "{additional_flags=$TEST_ALWAYS_FLAGS}" $options]
209 }
210
8a434e1d
KC
211 # TOOL_OPTIONS must come first, so that it doesn't override testcase
212 # specific options.
d636ae0b 213 if [info exists TOOL_OPTIONS] {
11289ef9 214 set options [concat "{additional_flags=$TOOL_OPTIONS}" $options]
d636ae0b 215 }
bbeb33f2 216
9debda96 217 # If we have built libobjc along with the compiler, point the test harness
264fa2db 218 # at it (and associated headers).
bbeb33f2 219
047fb009 220 set objcpath "[get_multilibs]"
a8252506 221
e457ca6a 222 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc.a]
9debda96
IS
223 if { $libobjc_dir == "" } {
224 # On darwin there is, potentially, a gnu runtime too.
2e58f311 225 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.a]
9debda96
IS
226 }
227 # Perhaps we didn't build static libs.
228 if { $libobjc_dir == "" } {
229 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc.${shlib_ext}]
230 # On darwin there is, potentially, a gnu runtime too.
231 if { $libobjc_dir == "" } {
232 set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.${shlib_ext}]
2e58f311
AT
233 }
234 }
9debda96 235
047fb009 236 if { $libobjc_dir != "" } {
9debda96
IS
237 # If we are using the gnu runtime, add its includes.
238 if { $nextruntime == 0 } {
239 set objc_include_dir "${srcdir}/../../libobjc"
240 lappend options "additional_flags=-I${objc_include_dir}"
241 verbose "adding gnu runtime include dir: $objc_include_dir "
242 }
822c7fe2 243 set libobjc_dir [file dirname ${libobjc_dir}]
9debda96
IS
244 # Allow for %s spec substitutions..
245 set objc_link_flags " -B${libobjc_dir} "
246 lappend options "additional_flags=${objc_link_flags}"
247 set objc_link_flags " -L${libobjc_dir} "
047fb009 248 lappend options "additional_flags=${objc_link_flags}"
33cde516 249 append ld_library_path ":${libobjc_dir}"
047fb009 250 }
d2f9f9a6
AP
251 if { $type == "precompiled_header" } {
252 # If we generating a precompiled header, we have say this is an
9debda96 253 # objective-C header.
d2f9f9a6
AP
254 set source [concat "-x objective-c-header" $source]
255 }
d636ae0b 256 lappend options "compiler=$OBJC_UNDER_TEST"
32ab0ba4 257 lappend options "timeout=[timeout_value]"
12c3717e 258
1df8e834 259 set_ld_library_path_env_vars
12c3717e 260
5e247ae5
IS
261 set options [dg-additional-files-options $options $source]
262
d636ae0b
OP
263 return [target_compile $source $dest $type $options]
264}
265
266#
9debda96 267# objc_pass -- utility to record a testcase passed.
d636ae0b
OP
268#
269
270proc objc_pass { testcase cflags } {
271 if { "$cflags" == "" } {
272 pass "$testcase"
273 } else {
274 pass "$testcase, $cflags"
275 }
276}
277
278#
279# objc_fail -- utility to record a testcase failed
280#
281
282proc objc_fail { testcase cflags } {
283 if { "$cflags" == "" } {
284 fail "$testcase"
285 } else {
286 fail "$testcase, $cflags"
287 }
288}
289
290#
291# objc_finish -- called at the end of every .exp script that calls objc_init
292#
293# The purpose of this proc is to hide all quirks of the testing environment
294# from the testsuites. It also exists to undo anything that objc_init did
295# (that needs undoing).
296#
297
298proc objc_finish { } {
299 # The testing harness apparently requires this.
11289ef9 300 global errorInfo
d636ae0b
OP
301
302 if [info exists errorInfo] then {
303 unset errorInfo
304 }
305
306 # Might as well reset these (keeps our caller from wondering whether
307 # s/he has to or not).
308 global prms_id bug_id
309 set prms_id 0
310 set bug_id 0
311}
312
313proc objc_exit { } {
11289ef9 314 global gluefile
d636ae0b
OP
315
316 if [info exists gluefile] {
11289ef9
BE
317 file_on_build delete $gluefile
318 unset gluefile
d636ae0b
OP
319 }
320}
321
322# If this is an older version of dejagnu (without runtest_file_p),
323# provide one and assume the old syntax: foo1.exp bar1.c foo2.exp bar2.c.
324# This can be deleted after next dejagnu release.
325
326if { [info procs runtest_file_p] == "" } then {
327 proc runtest_file_p { runtests testcase } {
328 if { $runtests != "" && [regexp "\[.\]\[cC\]" $runtests] } then {
329 if { [lsearch $runtests [file tail $testcase]] >= 0 } then {
330 return 1
331 } else {
332 return 0
333 }
334 }
335 return 1
336 }
337}
338
339# Provide a definition of this if missing (delete after next dejagnu release).
340
341if { [info procs prune_warnings] == "" } then {
342 proc prune_warnings { text } {
343 return $text
344 }
345}
346
347# Utility used by mike-gcc.exp and c-torture.exp.
348# Check the compiler(/assembler/linker) output for text indicating that
349# the testcase should be marked as "unsupported".
350#
351# When dealing with a large number of tests, it's difficult to weed out the
352# ones that are too big for a particular cpu (eg: 16 bit with a small amount
353# of memory). There are various ways to deal with this. Here's one.
354# Fortunately, all of the cases where this is likely to happen will be using
355# gld so we can tell what the error text will look like.
356
357proc ${tool}_check_unsupported_p { output } {
358 if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $output] {
359 return "memory full"
360 }
361 return ""
362}
363
364# Prune messages from objc that aren't useful.
365
366proc prune_objc_output { text } {
367 #send_user "Before:$text\n"
368 regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\n\]*" $text "" text
369 regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text
370
371 # It would be nice to avoid passing anything to objc that would cause it to
372 # issue these messages (since ignoring them seems like a hack on our part),
373 # but that's too difficult in the general case. For example, sometimes
374 # you need to use -B to point objc at crt0.o, but there are some targets
375 # that don't have crt0.o.
376 regsub -all "(^|\n)\[^\n\]*file path prefix \[^\n\]* never used" $text "" text
377 regsub -all "(^|\n)\[^\n\]*linker input file unused since linking not done" $text "" text
378
379 #send_user "After:$text\n"
380
381 return $text
382}
383