Commit 7b8fda08 by Tobias Burnus Committed by Tobias Burnus

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
parent 5fbbf2d9
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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment