re PR fortran/54474 (gfortran.dg/coarray_poly_3.f90)
authorDominique d'Humieres <dominiq@lps.ens.fr>
Wed, 5 Sep 2012 13:26:58 +0000 (13:26 +0000)
committerMikael Morin <mikael@gcc.gnu.org>
Wed, 5 Sep 2012 13:26:58 +0000 (13:26 +0000)
2012-09-05  Dominique Dhumieres  <dominiq@lps.ens.fr>

PR fortran/54474
* gfortran.dg/coarray_poly_3.f90: Adjust error messages.

From-SVN: r190977

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/coarray_poly_3.f90

index 26a82db..4598e66 100644 (file)
@@ -1,3 +1,8 @@
+2012-09-05  Dominique Dhumieres  <dominiq@lps.ens.fr>
+
+       PR fortran/54474
+       * gfortran.dg/coarray_poly_3.f90: Adjust error messages.
+
 2012-09-05  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/54191
index e6b19ae..8edd8d3 100644 (file)
@@ -3,13 +3,13 @@
 !
 
 
-subroutine cont1(x) ! { dg-error "has the CONTIGUOUS attribute but is not an array pointer or an assumed-shape array" }
+subroutine cont1(x) ! { dg-error "has the CONTIGUOUS attribute but is not an array pointer or an assumed-shape or assumed-rank array" }
   type t
   end type t
   class(t), contiguous, allocatable :: x(:)
 end
 
-subroutine cont2(x) ! { dg-error "has the CONTIGUOUS attribute but is not an array pointer or an assumed-shape array" }
+subroutine cont2(x) ! { dg-error "has the CONTIGUOUS attribute but is not an array pointer or an assumed-shape or assumed-rank array" }
   type t
   end type t
   class(t), contiguous, allocatable :: x(:)[:]