[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / gfortran.dg / direct_io_4.f90
blob050796735147d6293e8a2932bb31291dbcd2888d
1 ! { dg-do run }
2 ! PR 23321 : Running off the end of a file was not detected with direct I/O.
3 program main
4 implicit none
5 integer(kind=1) :: a, b
6 integer :: ios, i
8 a = 42
9 open (unit=10,status="scratch",recl=1,access="direct")
10 write(10,rec=1) a
12 read (10,rec=2, iostat=ios) b
13 if (ios == 0) call abort
15 read (10, rec=82641, iostat=ios) b ! This used to cause a segfault
16 if (ios == 0) call abort
18 read(10, rec=1, iostat=ios) b
19 if (ios /= 0) call abort
20 if (a /= b) call abort
22 end program main