summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/read_eof_7.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/read_eof_7.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/read_eof_7.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/read_eof_7.f90 b/gcc/testsuite/gfortran.dg/read_eof_7.f90
index a478f06c77e..0bf6f95e807 100644
--- a/gcc/testsuite/gfortran.dg/read_eof_7.f90
+++ b/gcc/testsuite/gfortran.dg/read_eof_7.f90
@@ -12,9 +12,9 @@ program main
i = 54321
idum = 6789
read (10,'(2i5,4x)') i, idum ! Trailing 4x was setting EOF condition
- if (i /= 99999 .and. idum /= 9) call abort
+ if (i /= 99999 .and. idum /= 9) STOP 1
j = 12345
read (10,name) ! EOF condition tripped here.
- if (j /= 73) call abort
+ if (j /= 73) STOP 2
end program main