URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [streamio_13.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! PR 34405 - BACKSPACE for unformatted stream files is prohibited.program mainimplicit noneinteger :: ioscharacter(len=80) :: msgopen(2003,form="unformatted",access="stream",status="scratch")write (2003) 1write (2003) 2ios = 0msg = ' 'backspace (2003,iostat=ios,iomsg=msg)if (ios == 0 .or. msg /="Cannot BACKSPACE an unformatted stream file") &call abortend program main
