Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/endfile.f @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! PR25550 file data corrupted after reading end of file. | |
3 ! Derived from example given in PR from Dale Ranta. | |
4 ! Contributed by Jerry DeLisle <jvdelisle@gcc.gnu.org> | |
5 integer data | |
6 data=-1 | |
7 open(unit=11,status='scratch',form='unformatted') | |
8 write(11)data | |
9 read(11,end=1000 )data | |
131 | 10 STOP 1 |
111 | 11 1000 continue |
12 rewind (11) | |
13 read(11)data | |
14 1001 continue | |
131 | 15 if(data.ne.-1) STOP 1 |
111 | 16 end |
17 | |
18 |