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/send_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/send_array.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray/send_array.f90 | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray/send_array.f90 b/gcc/testsuite/gfortran.dg/coarray/send_array.f90 index dc4700785c3..01b76703398 100644 --- a/gcc/testsuite/gfortran.dg/coarray/send_array.f90 +++ b/gcc/testsuite/gfortran.dg/coarray/send_array.f90 @@ -42,7 +42,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 1 end if sync all @@ -57,7 +57,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 2 end if sync all @@ -90,7 +90,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 3 end if sync all @@ -136,7 +136,7 @@ contains print *, a print *, caf print *, a-caf - call abort() + STOP 4 endif end if sync all @@ -171,7 +171,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 5 end if ! Whole array: ARRAY = ARRAY @@ -185,7 +185,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 6 end if sync all @@ -218,7 +218,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 7 end if sync all @@ -264,7 +264,7 @@ contains print *, a print *, caf print *, a-caf - call abort() + STOP 8 endif end if sync all @@ -299,7 +299,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 9 end if ! Whole array: ARRAY = ARRAY @@ -313,7 +313,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 10 end if sync all @@ -346,7 +346,7 @@ contains sync all if (this_image() == num_images()) then if (any (a /= caf)) & - call abort() + STOP 11 end if ! Array sections with different ranges and pos/neg strides @@ -391,7 +391,7 @@ contains print *, a print *, caf print *, a-caf - call abort() + STOP 12 endif end if sync all |