diff mbox series

[committed] Fix testsuite-fallout of OpenACC deep-copy patch (was: [PATCH 10/13] OpenACC 2.6 deep copy: Fortran front-end parts)

Message ID 5a3e23a2-abd4-e57e-c37f-a9993e545611@codesourcery.com
State New
Headers show
Series [committed] Fix testsuite-fallout of OpenACC deep-copy patch (was: [PATCH 10/13] OpenACC 2.6 deep copy: Fortran front-end parts) | expand

Commit Message

Tobias Burnus Dec. 20, 2019, 9:31 a.m. UTC
Julian's patch (r279628) removed several now obsolete dg-errors about 
ALLOCATABLE and POINTER.

But seemingly, one was missed and two (for no_create) were added between 
posting the patch and committing that patch.

Committed the attached patch as obvious in Rev.279634.

Cheers,

Tobias
diff mbox series

Patch

Index: gcc/testsuite/gfortran.dg/goacc/data-clauses.f95
===================================================================
--- gcc/testsuite/gfortran.dg/goacc/data-clauses.f95	(revision 279633)
+++ gcc/testsuite/gfortran.dg/goacc/data-clauses.f95	(revision 279634)
@@ -111,9 +111,9 @@ 
   !$acc end data
 
 
-  !$acc parallel no_create (tip) ! { dg-error "POINTER" }
+  !$acc parallel no_create (tip)
   !$acc end parallel
-  !$acc parallel no_create (tia) ! { dg-error "ALLOCATABLE" }
+  !$acc parallel no_create (tia)
   !$acc end parallel
   !$acc parallel deviceptr (i) no_create (i) ! { dg-error "multiple clauses" }
   !$acc end parallel
@@ -132,7 +132,7 @@ 
   !$acc end data
 
 
-  !$acc parallel present (tip) ! { dg-error "POINTER" }
+  !$acc parallel present (tip)
   !$acc end parallel
   !$acc parallel present (tia)
   !$acc end parallel
Index: gcc/testsuite/ChangeLog
===================================================================
--- gcc/testsuite/ChangeLog	(revision 279633)
+++ gcc/testsuite/ChangeLog	(revision 279634)
@@ -1,3 +1,8 @@ 
+2019-12-20  Tobias Burnus  <tobias@codesourcery.com>
+
+	* gfortran.dg/goacc/data-clauses.f95: Remove now
+	obsolete dg-error.
+
 2019-12-20  Jakub Jelinek  <jakub@redhat.com>
 
 	PR target/92841
@@ -8,11 +13,11 @@ 
 
 2019-12-19  Julian Brown  <julian@codesourcery.com>
 
-        * gfortran.dg/goacc/derived-types.f90: New test.
-        * gfortran.dg/goacc/derived-types-2.f90: New test.
-        * gfortran.dg/goacc/derived-types-3.f90: New test.
-        * gfortran.dg/goacc/data-clauses.f95: Adjust for expected errors.
-        * gfortran.dg/goacc/enter-exit-data.f95: Likewise.
+	* gfortran.dg/goacc/derived-types.f90: New test.
+	* gfortran.dg/goacc/derived-types-2.f90: New test.
+	* gfortran.dg/goacc/derived-types-3.f90: New test.
+	* gfortran.dg/goacc/data-clauses.f95: Adjust for expected errors.
+	* gfortran.dg/goacc/enter-exit-data.f95: Likewise.
 
 2019-12-19  Julian Brown  <julian@codesourcery.com>
 	    Cesar Philippidis  <cesar@codesourcery.com>