No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / lib / gcc-dg.exp
blob65975ef5a08ba5f5c631ebebf5be409f9c683ad6
1 # Copyright (C) 1997, 1999, 2000, 2003, 2004, 2005, 2006
2 # 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 2 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 this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 load_lib dg.exp
19 load_lib file-format.exp
20 load_lib target-supports.exp
21 load_lib target-supports-dg.exp
22 load_lib scanasm.exp
23 load_lib scanrtl.exp
24 load_lib scantree.exp
25 load_lib scanipa.exp
26 load_lib prune.exp
27 load_lib libgloss.exp
28 load_lib target-libpath.exp
30 # We set LC_ALL and LANG to C so that we get the same error messages as expected.
31 setenv LC_ALL C
32 setenv LANG C
34 if ![info exists TORTURE_OPTIONS] {
35 # It is theoretically beneficial to group all of the O2/O3 options together,
36 # as in many cases the compiler will generate identical executables for
37 # all of them--and the c-torture testsuite will skip testing identical
38 # executables multiple times.
39 # Also note that -finline-functions is explicitly included in one of the
40 # items below, even though -O3 is also specified, because some ports may
41 # choose to disable inlining functions by default, even when optimizing.
42 set TORTURE_OPTIONS [list \
43 { -O0 } \
44 { -O1 } \
45 { -O2 } \
46 { -O3 -fomit-frame-pointer } \
47 { -O3 -fomit-frame-pointer -funroll-loops } \
48 { -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions } \
49 { -O3 -g } \
50 { -Os } ]
53 global GCC_UNDER_TEST
54 if ![info exists GCC_UNDER_TEST] {
55 set GCC_UNDER_TEST "[find_gcc]"
58 global orig_environment_saved
60 # This file may be sourced, so don't override environment settings
61 # that have been previously setup.
62 if { $orig_environment_saved == 0 } {
63 append ld_library_path [gcc-set-multilib-library-path $GCC_UNDER_TEST]
64 set_ld_library_path_env_vars
67 # Split TORTURE_OPTIONS into two choices: one for testcases with loops and
68 # one for testcases without loops.
70 set torture_with_loops $TORTURE_OPTIONS
71 set torture_without_loops ""
72 foreach option $TORTURE_OPTIONS {
73 if ![string match "*loop*" $option] {
74 lappend torture_without_loops $option
78 # Define gcc callbacks for dg.exp.
80 proc gcc-dg-test-1 { target_compile prog do_what extra_tool_flags } {
81 # Set up the compiler flags, based on what we're going to do.
83 set options [list]
85 # Tests should be able to use "dg-do repo". However, the dg test
86 # driver checks the argument to dg-do against a list of acceptable
87 # options, and "repo" is not among them. Therefore, we resort to
88 # this ugly approach.
89 if [string match "*-frepo*" $extra_tool_flags] then {
90 set do_what "repo"
93 switch $do_what {
94 "preprocess" {
95 set compile_type "preprocess"
96 set output_file "[file rootname [file tail $prog]].i"
98 "compile" {
99 set compile_type "assembly"
100 set output_file "[file rootname [file tail $prog]].s"
102 "assemble" {
103 set compile_type "object"
104 set output_file "[file rootname [file tail $prog]].o"
106 "precompile" {
107 set compile_type "precompiled_header"
108 set output_file "[file tail $prog].gch"
110 "link" {
111 set compile_type "executable"
112 set output_file "[file rootname [file tail $prog]].exe"
113 # The following line is needed for targets like the i960 where
114 # the default output file is b.out. Sigh.
116 "repo" {
117 set compile_type "object"
118 set output_file "[file rootname [file tail $prog]].o"
120 "run" {
121 set compile_type "executable"
122 # FIXME: "./" is to cope with "." not being in $PATH.
123 # Should this be handled elsewhere?
124 # YES.
125 set output_file "./[file rootname [file tail $prog]].exe"
126 # This is the only place where we care if an executable was
127 # created or not. If it was, dg.exp will try to run it.
128 catch { remote_file build delete $output_file }
130 default {
131 perror "$do_what: not a valid dg-do keyword"
132 return ""
136 if { $extra_tool_flags != "" } {
137 lappend options "additional_flags=$extra_tool_flags"
140 set comp_output [$target_compile "$prog" "$output_file" "$compile_type" $options]
142 # Look for an internal compiler error, which sometimes masks the fact
143 # that we didn't get an expected error message. An ICE always fails,
144 # there's no way to XFAIL it.
145 if [string match "*internal compiler error*" $comp_output] {
146 upvar 2 name name
147 fail "$name (internal compiler error)"
150 if { $do_what == "repo" } {
151 set object_file "$output_file"
152 set output_file "[file rootname [file tail $prog]].exe"
153 set comp_output \
154 [ concat $comp_output \
155 [$target_compile "$object_file" "$output_file" \
156 "executable" $options] ]
159 return [list $comp_output $output_file]
162 proc gcc-dg-test { prog do_what extra_tool_flags } {
163 return [gcc-dg-test-1 gcc_target_compile $prog $do_what $extra_tool_flags]
166 proc gcc-dg-prune { system text } {
167 global additional_prunes
169 set text [prune_gcc_output $text]
171 foreach p $additional_prunes {
172 if { [string length $p] > 0 } {
173 # Following regexp matches a complete line containing $p.
174 regsub -all "(^|\n)\[^\n\]*$p\[^\n\]*" $text "" text
178 # If we see "region xxx is full" then the testcase is too big for ram.
179 # This is tricky to deal with in a large testsuite like c-torture so
180 # deal with it here. Just mark the testcase as unsupported.
181 if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $text] {
182 # The format here is important. See dg.exp.
183 return "::unsupported::memory full"
186 return $text
189 # Replace ${tool}_load with a wrapper to provide for an expected nonzero
190 # exit status. Multiple languages include this file so this handles them
191 # all, not just gcc.
192 if { [info procs ${tool}_load] != [list] \
193 && [info procs saved_${tool}_load] == [list] } {
194 rename ${tool}_load saved_${tool}_load
196 proc ${tool}_load { program args } {
197 global tool
198 global shouldfail
199 set result [eval [list saved_${tool}_load $program] $args]
200 if { $shouldfail != 0 } {
201 switch [lindex $result 0] {
202 "pass" { set status "fail" }
203 "fail" { set status "pass" }
205 set result [list $status [lindex $result 1]]
207 return $result
211 # Utility routines.
214 # search_for -- looks for a string match in a file
216 proc search_for { file pattern } {
217 set fd [open $file r]
218 while { [gets $fd cur_line]>=0 } {
219 if [string match "*$pattern*" $cur_line] then {
220 close $fd
221 return 1
224 close $fd
225 return 0
228 # Modified dg-runtest that can cycle through a list of optimization options
229 # as c-torture does.
230 proc gcc-dg-runtest { testcases default-extra-flags } {
231 global runtests
233 foreach test $testcases {
234 # If we're only testing specific files and this isn't one of
235 # them, skip it.
236 if ![runtest_file_p $runtests $test] {
237 continue
240 # Look for a loop within the source code - if we don't find one,
241 # don't pass -funroll[-all]-loops.
242 global torture_with_loops torture_without_loops
243 if [expr [search_for $test "for*("]+[search_for $test "while*("]] {
244 set option_list $torture_with_loops
245 } else {
246 set option_list $torture_without_loops
249 set nshort [file tail [file dirname $test]]/[file tail $test]
251 foreach flags $option_list {
252 verbose "Testing $nshort, $flags" 1
253 dg-test $test $flags ${default-extra-flags}
258 proc gcc-dg-debug-runtest { target_compile trivial opt_opts testcases } {
259 global srcdir subdir
261 if ![info exists DEBUG_TORTURE_OPTIONS] {
262 set DEBUG_TORTURE_OPTIONS ""
263 foreach type {-gdwarf-2 -gstabs -gstabs+ -gxcoff -gxcoff+ -gcoff} {
264 set comp_output [$target_compile \
265 "$srcdir/$subdir/$trivial" "trivial.S" assembly \
266 "additional_flags=$type"]
267 if { ! [string match "*: target system does not support the * debug format*" \
268 $comp_output] } {
269 foreach level {1 "" 3} {
270 lappend DEBUG_TORTURE_OPTIONS [list "${type}${level}"]
271 foreach opt $opt_opts {
272 lappend DEBUG_TORTURE_OPTIONS \
273 [list "${type}${level}" "$opt" ]
280 verbose -log "Using options $DEBUG_TORTURE_OPTIONS"
282 global runtests
284 foreach test $testcases {
285 # If we're only testing specific files and this isn't one of
286 # them, skip it.
287 if ![runtest_file_p $runtests $test] {
288 continue
291 set nshort [file tail [file dirname $test]]/[file tail $test]
293 foreach flags $DEBUG_TORTURE_OPTIONS {
294 set doit 1
295 if { [string match {*/debug-[126].c} "$nshort"] \
296 && [string match "*1" [lindex "$flags" 0] ] } {
297 set doit 0
300 # High optimization can remove the variable whose existence is tested.
301 # Dwarf debugging with commentary (-dA) preserves the symbol name in the
302 # assembler output, but stabs debugging does not.
303 # http://gcc.gnu.org/ml/gcc-regression/2003-04/msg00095.html
304 if { [string match {*/debug-[12].c} "$nshort"] \
305 && [string match "*O*" "$flags"] \
306 && ( [string match "*coff*" "$flags"] \
307 || [string match "*stabs*" "$flags"] ) } {
308 set doit 0
311 if { $doit } {
312 verbose -log "Testing $nshort, $flags" 1
313 dg-test $test $flags ""
319 # Prune any messages matching ARGS[1] (a regexp) from test output.
320 proc dg-prune-output { args } {
321 global additional_prunes
323 if { [llength $args] != 2 } {
324 error "[lindex $args 1]: need one argument"
325 return
328 lappend additional_prunes [lindex $args 1]
331 # Remove files matching the pattern from the build machine.
332 proc remove-build-file { pat } {
333 verbose "remove-build-file `$pat'" 2
334 set file_list "[glob -nocomplain $pat]"
335 verbose "remove-build-file `$file_list'" 2
336 foreach output_file $file_list {
337 remote_file build delete $output_file
341 # Remove compiler-generated coverage files for the current test.
342 proc cleanup-coverage-files { } {
343 # This assumes that we are two frames down from dg-test or some other proc
344 # that stores the filename of the testcase in a local variable "name".
345 # A cleaner solution would require a new DejaGnu release.
346 upvar 2 name testcase
347 remove-build-file "[file rootname [file tail $testcase]].gc??"
349 # Clean up coverage files for additional source files.
350 if [info exists additional_sources] {
351 foreach srcfile $additional_sources {
352 remove-build-file "[file rootname [file tail $srcfile]].gc??"
357 # Remove compiler-generated files from -repo for the current test.
358 proc cleanup-repo-files { } {
359 # This assumes that we are two frames down from dg-test or some other proc
360 # that stores the filename of the testcase in a local variable "name".
361 # A cleaner solution would require a new DejaGnu release.
362 upvar 2 name testcase
363 remove-build-file "[file rootname [file tail $testcase]].o"
364 remove-build-file "[file rootname [file tail $testcase]].rpo"
366 # Clean up files for additional source files.
367 if [info exists additional_sources] {
368 foreach srcfile $additional_sources {
369 remove-build-file "[file rootname [file tail $srcfile]].o"
370 remove-build-file "[file rootname [file tail $srcfile]].rpo"
375 # Remove compiler-generated RTL dump files for the current test.
377 # SUFFIX is the filename suffix pattern.
378 proc cleanup-rtl-dump { suffix } {
379 cleanup-dump "\[0-9\]\[0-9\].$suffix"
382 # Remove a specific tree dump file for the current test.
384 # SUFFIX is the tree dump file suffix pattern.
385 proc cleanup-tree-dump { suffix } {
386 cleanup-dump "t\[0-9\]\[0-9\].$suffix"
389 # Remove a specific ipa dump file for the current test.
391 # SUFFIX is the ipa dump file suffix pattern.
392 proc cleanup-ipa-dump { suffix } {
393 cleanup-dump "i\[0-9\]\[0-9\].$suffix"
396 # Remove all dump files with the provided suffix.
397 proc cleanup-dump { suffix } {
398 # This assumes that we are three frames down from dg-test or some other
399 # proc that stores the filename of the testcase in a local variable
400 # "name". A cleaner solution would require a new DejaGnu release.
401 upvar 3 name testcase
402 # The name might include a list of options; extract the file name.
403 set src [file tail [lindex $testcase 0]]
404 remove-build-file "[file tail $src].$suffix"
406 # Clean up dump files for additional source files.
407 if [info exists additional_sources] {
408 foreach srcfile $additional_sources {
409 remove-build-file "[file tail $srcfile].$suffix"
414 # Remove files kept by --save-temps for the current test.
416 # Currently this is only .i files, but more can be added if there are
417 # tests generating them.
418 proc cleanup-saved-temps { } {
419 global additional_sources
421 # This assumes that we are two frames down from dg-test or some other proc
422 # that stores the filename of the testcase in a local variable "name".
423 # A cleaner solution would require a new DejaGnu release.
424 upvar 2 name testcase
425 remove-build-file "[file rootname [file tail $testcase]].ii"
426 remove-build-file "[file rootname [file tail $testcase]].i"
428 # Clean up saved temp files for additional source files.
429 if [info exists additional_sources] {
430 foreach srcfile $additional_sources {
431 remove-build-file "[file rootname [file tail $srcfile]].ii"
432 remove-build-file "[file rootname [file tail $srcfile]].i"
437 # Remove files for specified Fortran modules.
438 proc cleanup-modules { modlist } {
439 foreach modname $modlist {
440 remove-build-file [string tolower $modname].mod
444 # Verify that the compiler output file exists, invoked via dg-final.
445 proc output-exists { args } {
446 # Process an optional target or xfail list.
447 if { [llength $args] >= 1 } {
448 switch [dg-process-target [lindex $args 0]] {
449 "S" { }
450 "N" { return }
451 "F" { setup_xfail "*-*-*" }
452 "P" { }
456 # Access variables from gcc-dg-test-1.
457 upvar 2 name testcase
458 upvar 2 output_file output_file
460 if [file exists $output_file] {
461 pass "$testcase output-exists $output_file"
462 } else {
463 fail "$testcase output-exists $output_file"
467 # Verify that the compiler output file does not exist, invoked via dg-final.
468 proc output-exists-not { args } {
469 # Process an optional target or xfail list.
470 if { [llength $args] >= 1 } {
471 switch [dg-process-target [lindex $args 0]] {
472 "S" { }
473 "N" { return }
474 "F" { setup_xfail "*-*-*" }
475 "P" { }
479 # Access variables from gcc-dg-test-1.
480 upvar 2 name testcase
481 upvar 2 output_file output_file
483 if [file exists $output_file] {
484 fail "$testcase output-exists-not $output_file"
485 } else {
486 pass "$testcase output-exists-not $output_file"
490 # We need to make sure that additional_* are cleared out after every
491 # test. It is not enough to clear them out *before* the next test run
492 # because gcc-target-compile gets run directly from some .exp files
493 # (outside of any test). (Those uses should eventually be eliminated.)
495 # Because the DG framework doesn't provide a hook that is run at the
496 # end of a test, we must replace dg-test with a wrapper.
498 if { [info procs saved-dg-test] == [list] } {
499 rename dg-test saved-dg-test
501 proc dg-test { args } {
502 global additional_files
503 global additional_sources
504 global additional_prunes
505 global errorInfo
506 global compiler_conditional_xfail_data
507 global shouldfail
509 if { [ catch { eval saved-dg-test $args } errmsg ] } {
510 set saved_info $errorInfo
511 set additional_files ""
512 set additional_sources ""
513 set additional_prunes ""
514 set shouldfail 0
515 if [info exists compiler_conditional_xfail_data] {
516 unset compiler_conditional_xfail_data
518 error $errmsg $saved_info
520 set additional_files ""
521 set additional_sources ""
522 set additional_prunes ""
523 set shouldfail 0
524 if [info exists compiler_conditional_xfail_data] {
525 unset compiler_conditional_xfail_data
530 set additional_prunes ""