URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_t_3.f90] - Rev 700
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }! PR31051 bug with x and t format descriptors.! Test case prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org> from PR.program tinteger, parameter :: n = 9character(len=40) :: fmtcharacter(len=2), dimension(n) :: yopen(unit=10, status="scratch")y = 'a 'fmt = '(a,1x,(t7, 3a))'write(10, fmt) 'xxxx', (y(i), i = 1,n)rewind(10)read(10, '(a)') fmtif (fmt.ne."xxxx a a a") call abort()end program t
Go to most recent revision | Compare with Previous | Blame | View Log
