diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/eof_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/eof_1.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/eof_1.f90 b/gcc/testsuite/gfortran.dg/eof_1.f90 index 05726bd1413..b9d229508fe 100644 --- a/gcc/testsuite/gfortran.dg/eof_1.f90 +++ b/gcc/testsuite/gfortran.dg/eof_1.f90 @@ -9,9 +9,9 @@ program eof_1 write (11, '(a)') "Hello" rewind(11) read(11, *) s - if (s .ne. "Hello") call abort + if (s .ne. "Hello") STOP 1 read(11, '(a5)', end=10) s - call abort + STOP 2 10 continue close (11) end |