URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [dos_eol.f] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
! PR libfortran/19678 and PR libfortran/19679 ! { dg-do run } integer i, j open (10,status='scratch') write (10,'(2A)') '1', achar(13) rewind (10) read (10,*) i if (i .ne. 1) call abort close (10) open (10,status='scratch') write (10,'(2A)') ' 1', achar(13) write (10,'(2A)') ' 2', achar(13) rewind (10) read (10,'(I4)') i read (10,'(I5)') j if ((i .ne. 1) .or. (j .ne. 2)) call abort end
Go to most recent revision | Compare with Previous | Blame | View Log