summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/stfunc_4.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/stfunc_4.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/stfunc_4.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/stfunc_4.f90 b/gcc/testsuite/gfortran.dg/stfunc_4.f90
index 2f0efccf326..d6139d523e1 100644
--- a/gcc/testsuite/gfortran.dg/stfunc_4.f90
+++ b/gcc/testsuite/gfortran.dg/stfunc_4.f90
@@ -10,8 +10,8 @@
st1 (i) = i * i * i
FORALL(i=1:4) a(i) = st1 (i)
FORALL(i=1:4) a(i) = u (a(i)) - a(i)** 2
- if (any (a .ne. 0)) call abort ()
- if (i .ne. 99) call abort ()
+ if (any (a .ne. 0)) STOP 1
+ if (i .ne. 99) STOP 2
contains
pure integer function u (x)
integer,intent(in) :: x