This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix testsuite failure of import3.f90
- From: Steve Kargl <sgk at troutmask dot apl dot washington dot edu>
- To: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Wed, 15 Nov 2006 13:29:27 -0800
- Subject: Fix testsuite failure of import3.f90
I've committed the following
2006-11-15 Steven G. Kargl <kargl@gcc.gnu.org>
* gfortran.dg/import3.f90: Fix error message.
Index: import3.f90
===================================================================
--- import3.f90 (revision 118865)
+++ import3.f90 (working copy)
@@ -24,7 +24,7 @@ program foo
interface
import ! { dg-error "only permitted in an INTERFACE body" }
subroutine bar()
- import foob ! { dg-error "Can not IMPORT 'foob' from host scoping unit" }
+ import foob ! { dg-error "Cannot IMPORT 'foob' from host scoping unit" }
end subroutine bar
subroutine test()
import :: ! { dg-error "Expecting list of named entities" }
--
Steve