URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_t_1.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }integer nrow, vec(15)open (10, status="scratch")write (10, fmt='(a)') '001 1 2 3 4 5 6'write (10, fmt='(a)') '000000 7 8 9101112'write (10, fmt='(a)') '000000131415'rewind (10)read (10, fmt='(i6, (t7, 6i2))') nrow, (vec(i), i=1,15)close (10)if (nrow.ne.1) call abortif (any (vec.ne.(/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15/))) call abortend
Go to most recent revision | Compare with Previous | Blame | View Log
