123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- # Copyright (C) 2004-2015 Free Software Foundation, Inc.
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with GCC; see the file COPYING3. If not see
- # <http://www.gnu.org/licenses/>.
- load_lib gcc-dg.exp
- load_lib torture-options.exp
- # Define gfortran callbacks for dg.exp.
- proc gfortran-dg-test { prog do_what extra_tool_flags } {
- set result \
- [gcc-dg-test-1 gfortran_target_compile $prog $do_what $extra_tool_flags]
-
- set comp_output [lindex $result 0]
- set output_file [lindex $result 1]
- # gfortran error messages look like this:
- # [name]:[locus]:
- #
- # some code
- # 1
- # Error: Some error at (1)
- # or
- # [name]:[locus]:
- #
- # some code
- # 1
- # [name]:[locus2]:
- #
- # some other code
- # 2
- # Error: Some error at (1) and (2)
- # or
- # [name]:[locus]:
- #
- # some code and some more code
- # 1 2
- # Error: Some error at (1) and (2)
- #
- # or
- # [name]:[locus]: Error: Some error
- #
- # Where [locus] is either [line] or [line].[column] or
- # [line].[column]-[column] .
- #
- # We collapse these to look like:
- # [name]:[line]:[column]: Error: Some error at (1) and (2)
- # or
- # [name]:[line]:[column]: Error: Some error at (1) and (2)
- # [name]:[line2]:[column]: Error: Some error at (1) and (2)
- #
- # Note that these regexps only make sense in the combinations used below.
- # Note also that is imperative that we first deal with the form with
- # two loci.
- set locus_regexp "(\[^\n\]+:\[0-9\]+)\[\.:\](\[0-9\]+)(-\[0-9\]+)?:\n\n\[^\n\]+\n\[^\n\]+\n"
- set diag_regexp "(\[^\n\]+)\n"
- # We proceed in steps:
- # 1. We add first a column number if none exists.
- # (Some Fortran diagnostics have the locus after Warning|Error)
- set colnum_regexp "(^|\n)(Warning: |Error: )?(\[^:\n\]+:\[0-9\]+):(\[ \n\])"
- regsub -all $colnum_regexp $comp_output "\\1\\3:0:\\4\\2" comp_output
- verbose "comput_output0:\n$comp_output"
- # 2. We deal with the form with two different locus lines,
- set two_loci "(^|\n)$locus_regexp$locus_regexp$diag_regexp"
- regsub -all $two_loci $comp_output "\\1\\2:\\3: \\8\n\\5\:\\6: \\8\n" comp_output
- verbose "comput_output1:\n$comp_output"
- # 3. then with the form with only one locus line.
- set single_locus "(^|\n)$locus_regexp$diag_regexp"
- regsub -all $single_locus $comp_output "\\1\\2:\\3: \\5\n" comp_output
- verbose "comput_output2:\n$comp_output"
- # 4. Add a line number if none exists
- regsub -all "(^|\n)(Warning: |Error: )" $comp_output "\\1:0:0: \\2" comp_output
- verbose "comput_output3:\n$comp_output"
- return [list $comp_output $output_file]
- }
- proc gfortran-dg-prune { system text } {
- return [gcc-dg-prune $system $text]
- }
- # Utility routines.
- # Modified dg-runtest that can cycle through a list of optimization options
- # as c-torture does.
- proc gfortran-dg-runtest { testcases flags default-extra-flags } {
- global runtests
- global DG_TORTURE_OPTIONS torture_with_loops
- torture-init
- set-torture-options $DG_TORTURE_OPTIONS
- foreach test $testcases {
- # If we're only testing specific files and this isn't one of
- # them, skip it.
- if ![runtest_file_p $runtests $test] {
- continue
- }
- # look if this is dg-do-run test, in which case
- # we cycle through the option list, otherwise we don't
- if [expr [search_for $test "dg-do run"]] {
- set option_list $torture_with_loops
- } else {
- set option_list [list { -O } ]
- }
- set nshort [file tail [file dirname $test]]/[file tail $test]
- list-module-names $test
- foreach flags_t $option_list {
- verbose "Testing $nshort, $flags $flags_t" 1
- dg-test $test "$flags $flags_t" ${default-extra-flags}
- cleanup-modules ""
- }
- }
- torture-finish
- }
- proc gfortran-dg-debug-runtest { target_compile trivial opt_opts testcases } {
- global srcdir subdir DEBUG_TORTURE_OPTIONS
- if ![info exists DEBUG_TORTURE_OPTIONS] {
- set DEBUG_TORTURE_OPTIONS ""
- set type_list [list "-gstabs" "-gstabs+" "-gxcoff" "-gxcoff+" "-gcoff" "-gdwarf-2" ]
- foreach type $type_list {
- set comp_output [$target_compile \
- "$srcdir/$subdir/$trivial" "trivial.S" assembly \
- "additional_flags=$type"]
- if { [string match "exit status *" $comp_output] } {
- continue
- }
- if { [string match \
- "* target system does not support the * debug format*" \
- $comp_output]
- } {
- continue
- }
- remove-build-file "trivial.S"
- foreach level {1 "" 3} {
- if { ($type == "-gdwarf-2") && ($level != "") } {
- lappend DEBUG_TORTURE_OPTIONS [list "${type}" "-g${level}"]
- foreach opt $opt_opts {
- lappend DEBUG_TORTURE_OPTIONS \
- [list "${type}" "-g${level}" "$opt" ]
- }
- } else {
- lappend DEBUG_TORTURE_OPTIONS [list "${type}${level}"]
- foreach opt $opt_opts {
- lappend DEBUG_TORTURE_OPTIONS \
- [list "${type}${level}" "$opt" ]
- }
- }
- }
- }
- }
- verbose -log "Using options $DEBUG_TORTURE_OPTIONS"
- global runtests
- foreach test $testcases {
- # If we're only testing specific files and this isn't one of
- # them, skip it.
- if ![runtest_file_p $runtests $test] {
- continue
- }
- set nshort [file tail [file dirname $test]]/[file tail $test]
- list-module-names $test
- foreach flags $DEBUG_TORTURE_OPTIONS {
- set doit 1
- # gcc-specific checking removed here
- if { $doit } {
- verbose -log "Testing $nshort, $flags" 1
- dg-test $test $flags ""
- cleanup-modules ""
- }
- }
- }
- }
|