OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [g77/] [f77-edit-t-in.f] - Rev 694

Compare with Previous | Blame | View Log

C Test Fortran 77 T edit descriptor for input
C      (ANSI X3.9-1978 Section 13.5.3.2)
C
C Origin: David Billinghurst <David.Billinghurst@riotinto.com>
C
C { dg-do run }
C { dg-options "-std=legacy" }
C
      integer i,j
      real a,b,c,d,e
      character*32 in
 
      in = '1234   8'
      read(in,'(T3,I1)') i
      if ( i.ne.3 )                   call abort()
      read(in,'(5X,TL4,I2)') i
      if ( i.ne.23 )                  call abort()
      read(in,'(3X,I1,TR3,I1)') i,j
      if ( i.ne.4 )                  call abort()
      if ( j.ne.8 )                  call abort()
 
      in = '   1.5  -12.62  348.75  1.0E-6'
 100  format(F6.0,TL6,I4,1X,I1,8X,I5,F3.0,T10,F5.0,T17,F6.0,TR2,F6.0)
      read(in,100) a,i,j,k,b,c,d,e
      if ( abs(a-1.5).gt.1.0e-5 )     call abort()
      if ( i.ne.1 )                   call abort()
      if ( j.ne.5 )                   call abort()
      if ( k.ne.348 )                 call abort()
      if ( abs(b-0.75).gt.1.0e-5 )    call abort()
      if ( abs(c-12.62).gt.1.0e-5 )   call abort()
      if ( abs(d-348.75).gt.1.0e-4 )  call abort()
      if ( abs(e-1.0e-6).gt.1.0e-11 ) call abort()
      end
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.