summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/coarray/codimension.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/coarray/codimension.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/coarray/codimension.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray/codimension.f90 b/gcc/testsuite/gfortran.dg/coarray/codimension.f90
index 706048f33ef..077cbefb393 100644
--- a/gcc/testsuite/gfortran.dg/coarray/codimension.f90
+++ b/gcc/testsuite/gfortran.dg/coarray/codimension.f90
@@ -25,10 +25,10 @@ contains
call expl (y)
i = lcobound(x, dim=1)
j = ucobound(x, dim=1)
- if (i /= 1 .or. j /= num_images()) call abort()
+ if (i /= 1 .or. j /= num_images()) STOP 1
i = lcobound(y, dim=1)
j = ucobound(y, dim=1)
- if (i /= 1 .or. j /= num_images()) call abort()
+ if (i /= 1 .or. j /= num_images()) STOP 2
end subroutine foo
subroutine bar(y)
@@ -36,7 +36,7 @@ contains
integer :: i, j
i = lcobound(y, dim=1)
j = ucobound(y, dim=1)
- if (i /= 1 .or. j /= num_images()) call abort()
+ if (i /= 1 .or. j /= num_images()) STOP 3
end subroutine bar
subroutine expl(z)
@@ -44,6 +44,6 @@ contains
integer :: i, j
i = lcobound(z, dim=1)
j = ucobound(z, dim=1)
- if (i /= 1 .or. j /= num_images()) call abort()
+ if (i /= 1 .or. j /= num_images()) STOP 4
end subroutine expl
end program test_caf