summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/read_eof_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/read_eof_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/read_eof_1.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/read_eof_1.f90 b/gcc/testsuite/gfortran.dg/read_eof_1.f90
index 78ff14a5d9b..2a670dce4c3 100644
--- a/gcc/testsuite/gfortran.dg/read_eof_1.f90
+++ b/gcc/testsuite/gfortran.dg/read_eof_1.f90
@@ -9,7 +9,7 @@
open(unit=11,status='scratch',form='unformatted')
write(11)data
read(11,end= 1000 )data
- call abort()
+ STOP 1
1000 continue
backspace 11
backspace 11
@@ -19,9 +19,9 @@
read(11,end= 1001 )data
1001 continue
read(11,end= 1002 )data
- call abort
+ STOP 1
1002 continue
- if (.not. all(data == -3)) call abort()
+ if (.not. all(data == -3)) STOP 2
close(11)
end