summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90')
-rw-r--r--gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f9010
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90
index 0595adf0c89..9b33e21e8fc 100644
--- a/gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90
+++ b/gcc/testsuite/gfortran.fortran-torture/execute/forall_5.f90
@@ -20,9 +20,9 @@ program forall_5
t(i) = i
enddo
- if (any(q(1)%p .ne. (/1,2,3,4,5/))) call abort
- if (any(q(2)%p .ne. (/1,2,3,4,5/))) call abort
- if (any(q(3)%p .ne. (/6,7,8,9,10/))) call abort
- if (any(q(4)%p .ne. (/11,12,13,14,15/))) call abort
- if (any(q(5)%p .ne. (/16,17,18,19,20/))) call abort
+ if (any(q(1)%p .ne. (/1,2,3,4,5/))) STOP 1
+ if (any(q(2)%p .ne. (/1,2,3,4,5/))) STOP 2
+ if (any(q(3)%p .ne. (/6,7,8,9,10/))) STOP 3
+ if (any(q(4)%p .ne. (/11,12,13,14,15/))) STOP 4
+ if (any(q(5)%p .ne. (/16,17,18,19,20/))) STOP 5
end