It's a pity that I've made the same fixes myself. I was planing to commit soon. :-(
On Tuesday 02 August 2011 17:34:46 Tobias Burnus wrote: > This patch fixes dg-final cleanup-modules issues: > * Missing cleanups > * Wrong case: All module files are lower case This is not actually a problem as cleanup-module is: # Remove files for specified Fortran modules. proc cleanup-modules { modlist } { foreach modname $modlist { remove-build-file [string tolower $modname].mod } } (note the "string tolower") > * Wrong cleanup (clean up .mod which don't exist instead of the one > which exists) > > One test case actually failed because it had a spurious "use foo" in it > - I have now deleted that line instead of creating a dummy module ... > > There might be still some missing or wrong cleanups, but most remaining > .mod files are from gfortran.fortran-torture. > > Regtested on x86-64-linux and committed as Rev. 177184. Thanks. I'll see if I have additional fixes after updating. Mikael