summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/endfile.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/endfile.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/endfile.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/endfile.f90 b/gcc/testsuite/gfortran.dg/endfile.f90
index 60875ce2338..d86659503eb 100644
--- a/gcc/testsuite/gfortran.dg/endfile.f90
+++ b/gcc/testsuite/gfortran.dg/endfile.f90
@@ -24,8 +24,8 @@
read (10,'(I4)',end=99) j
end do
! should never get here
- call abort
+ STOP 1
99 continue ! end of file
- if (j.ne.10) call abort
+ if (j.ne.10) STOP 2
close(10,status='delete')
end