re PR fortran/60599 (Testsuite's scan-module-absence no longer works)

2014-03-21  Tobias Burnus  <burnus@net-b.de>

        PR fortran/60599
        * lib/gcc-dg.exp (scan-module): Uncompress .mod files for
        reading.

From-SVN: r208739
This commit is contained in:
Tobias Burnus 2014-03-21 00:16:57 +01:00 committed by Tobias Burnus
parent 5fbbf2d9dc
commit 7b8fda082f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2014-03-21 Tobias Burnus <burnus@net-b.de>
PR fortran/60599
* lib/gcc-dg.exp (scan-module): Uncompress .mod files for
reading.
2014-03-20 Jakub Jelinek <jakub@redhat.com>
PR middle-end/60597

View File

@ -656,7 +656,7 @@ proc scan-module { args } {
# Argument 1 is the regexp to match
proc scan-module-absence { args } {
set modfilename [string tolower [lindex $args 0]].mod
set fd [open $modfilename r]
set fd [open [list | gzip -dc $modfilename] r]
set text [read $fd]
close $fd