diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2018-02-23 22:36:54 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2018-02-23 22:36:54 +0000 |
commit | 88a3ea34080ad3087a8191fbf479543153175d59 (patch) | |
tree | 34eaec34d3588e09f9a77abba776266f124dc823 /gcc/testsuite/gfortran.dg/coarray/get_array.f90 | |
parent | 25e15aaed275cdfef34b3ee6eb3cb4b43a48d44f (diff) | |
parent | e65055a558093bd4fc0b1b0024b7814cc187b8e8 (diff) | |
download | gccgo.tar.gz |
Merge from trunk revision 257954.gccgo
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gccgo@257955 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gfortran.dg/coarray/get_array.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray/get_array.f90 | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray/get_array.f90 b/gcc/testsuite/gfortran.dg/coarray/get_array.f90 index c4c96671f62..34f5d82ab44 100644 --- a/gcc/testsuite/gfortran.dg/coarray/get_array.f90 +++ b/gcc/testsuite/gfortran.dg/coarray/get_array.f90 @@ -50,7 +50,7 @@ contains a(:,:) = b(:,:) c(:,:) = caf(:,:)[num_images()] if (any (a /= c)) then - call abort() + STOP 1 end if sync all @@ -75,7 +75,7 @@ contains end do end do if (any (a /= c)) then - call abort() + STOP 2 end if sync all @@ -101,7 +101,7 @@ contains c(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2) & = caf(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2)[num_images()] if (any (c /= a)) then - call abort() + STOP 3 end if sync all end do @@ -136,7 +136,7 @@ contains a(:,:) = b(:,:) c(:,:) = caf(:,:)[num_images()] if (any (a /= c)) then - call abort() + STOP 4 end if sync all @@ -161,7 +161,7 @@ contains end do end do if (any (a /= c)) then - call abort() + STOP 5 end if sync all @@ -187,7 +187,7 @@ contains c(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2) & = caf(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2)[num_images()] if (any (c /= a)) then - call abort() + STOP 6 end if sync all end do @@ -222,7 +222,7 @@ contains a(:,:) = b(:,:) c(:,:) = caf(:,:)[num_images()] if (any (a /= c)) then - call abort() + STOP 7 end if sync all @@ -247,7 +247,7 @@ contains end do end do if (any (a /= c)) then - call abort() + STOP 8 end if sync all @@ -273,7 +273,7 @@ contains c(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2) & = caf(i:i_e:i_s*i_sgn1, j:j_e:j_s*i_sgn2)[num_images()] if (any (c /= a)) then - call abort() + STOP 9 end if sync all end do |