diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/endfile.f')
-rw-r--r-- | gcc/testsuite/gfortran.dg/endfile.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/endfile.f b/gcc/testsuite/gfortran.dg/endfile.f index 6ece5459fa3..ae8256b8f71 100644 --- a/gcc/testsuite/gfortran.dg/endfile.f +++ b/gcc/testsuite/gfortran.dg/endfile.f @@ -7,12 +7,12 @@ open(unit=11,status='scratch',form='unformatted') write(11)data read(11,end=1000 )data - call abort() + STOP 1 1000 continue rewind (11) read(11)data 1001 continue - if(data.ne.-1) call abort + if(data.ne.-1) STOP 1 end |