summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/array_constructor_23.f
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/array_constructor_23.f')
-rw-r--r--gcc/testsuite/gfortran.dg/array_constructor_23.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/array_constructor_23.f b/gcc/testsuite/gfortran.dg/array_constructor_23.f
index fa0a28a1f17..43fa3a87724 100644
--- a/gcc/testsuite/gfortran.dg/array_constructor_23.f
+++ b/gcc/testsuite/gfortran.dg/array_constructor_23.f
@@ -20,7 +20,7 @@
DDA1 = ATAN2 ((/(REAL(J1,KV),J1=1,10)/),
$ REAL((/(J1,J1=nf10,nf1,mf1)/), KV)) !fails
DDA2 = ATAN2 (DDA, DDA(10:1:-1))
- if (any (DDA1 - DDA2 .gt. epsilon(dval))) call abort ()
+ if (any (DDA1 - DDA2 .gt. epsilon(dval))) STOP 1
END
subroutine FA6077 (nf10,nf1,mf1, ida)
@@ -29,7 +29,7 @@
IDA1 = IEOR((/1,2,3,4,5,6,7,8,9,10/),
$ (/(IDA(J1),J1=10,1,-1)/) )
IDA2 = IEOR ((/1,2,3,4,5,6,7,8,9,10/), (/10,9,8,7,6,5,4,3,2,1/) )
- if (any (ida1 .ne. ida2)) call abort ()
+ if (any (ida1 .ne. ida2)) STOP 2
END SUBROUTINE
subroutine fa2083
@@ -42,7 +42,7 @@
QDA1 = MOD ( 1.1_k*( QDA(1) -5.0_k), P=( QDA -2.5_k))
DO J1 = 1,10
QVAL = MOD(1.1_k*(QDA(1)-5.0_k),P=(QDA(J1)-2.5_k))
- if (qval - qda1(j1) .gt. epsilon(qval)) call abort ()
+ if (qval - qda1(j1) .gt. epsilon(qval)) STOP 3
ENDDO
END