URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [streamio_15.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run { target fd_truncate } }! PR35132 Formatted stream I/O write should truncate.! Test case adapted from PR by Jerry DeLisle <jvdelisle@gcc.gnu.org>program mainimplicit nonecharacter(len=6) :: cinteger :: i, newline_lengthopen(20,status="scratch",access="stream",form="formatted")write(20,"()")inquire(20,pos=newline_length)newline_length = newline_length - 1if (newline_length < 1 .or. newline_length > 2) call abortclose(20)open(20,file="foo.txt",form="formatted",access="stream")write(20,'(A)') '123456'write(20,'(A)') 'abcdef'write(20,'(A)') 'qwerty'rewind 20! Skip over the first lineread(20,'(A)') cif (c.ne.'123456') call abort! Save the positioninquire(20,pos=i)if (i.ne.7+newline_length) call abort! Read in the complete line...read(20,'(A)') cif (c.ne.'abcdef') call abort! Write out the first four characterswrite(20,'(A)',pos=i,advance="no") 'ASDF'! Fill up the rest of the line. Here, we know the length. If we! don't, things will be a bit more complicated.write(20,'(A)') c(5:6)! Copy the file to standard outputrewind 20c = ""read(20,'(A)') cif (c.ne.'123456') call abortread(20,'(A)') cif (c.ne.'ASDFef') call abortread(20,'(A)', iostat=i) cif (i /= -1) call abortclose (20, status="delete")end program main
