summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/arrayio_5.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/arrayio_5.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/arrayio_5.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/arrayio_5.f90 b/gcc/testsuite/gfortran.dg/arrayio_5.f90
index cb062037a4a..ef290c84b93 100644
--- a/gcc/testsuite/gfortran.dg/arrayio_5.f90
+++ b/gcc/testsuite/gfortran.dg/arrayio_5.f90
@@ -8,6 +8,6 @@ program arrayio_5
character(12) :: r(10) = '0123456789AB'
write(r,'(i12)',iostat=ierr) 1,2,3,4,5,6,7,8,9,10,11
- if (ierr.ne.-1) call abort()
+ if (ierr.ne.-1) STOP 1
end program arrayio_5