OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [complex_read.f90] - Diff between revs 302 and 384

Only display areas with differences | Details | Blame | View Log

Rev 302 Rev 384
! { dg-do run { target fd_truncate } }
! { dg-do run { target fd_truncate } }
! Test of the fix to the bug in NIST fm906.for.
! Test of the fix to the bug in NIST fm906.for.
! Contributed by Paul Thomas  
! Contributed by Paul Thomas  
!
!
program complex_read
program complex_read
  complex            ::  a
  complex            ::  a
  open (10, status="scratch")
  open (10, status="scratch")
! Test that we have not broken the one line form.
! Test that we have not broken the one line form.
  write (10, *) " ( 0.99  ,  9.9  )"
  write (10, *) " ( 0.99  ,  9.9  )"
  rewind (10)
  rewind (10)
  read (10,*) a
  read (10,*) a
  if (a.ne.(0.99, 9.90)) call abort ()
  if (a.ne.(0.99, 9.90)) call abort ()
! Test a new record after the.comma (the original bug).
! Test a new record after the.comma (the original bug).
  rewind (10)
  rewind (10)
  write (10, *) " ( 99.0   ,"
  write (10, *) " ( 99.0   ,"
  write (10, *) "   999.0  )"
  write (10, *) "   999.0  )"
  rewind (10)
  rewind (10)
  read (10,*) a
  read (10,*) a
  if (a.ne.(99.0, 999.0)) call abort ()
  if (a.ne.(99.0, 999.0)) call abort ()
! Test a new record before the.comma
! Test a new record before the.comma
  rewind (10)
  rewind (10)
  write (10, *) " ( 0.99  "
  write (10, *) " ( 0.99  "
  write (10, *) " , 9.9  )"
  write (10, *) " , 9.9  )"
  rewind (10)
  rewind (10)
  read (10,*) a
  read (10,*) a
  if (a.ne.(0.99, 9.90)) call abort ()
  if (a.ne.(0.99, 9.90)) call abort ()
! Test a new records before and after the.comma
! Test a new records before and after the.comma
  rewind (10)
  rewind (10)
  write (10, *) " ( 99.0   "
  write (10, *) " ( 99.0   "
  write (10, *) ",         "
  write (10, *) ",         "
  write (10, *) "  999.0  )"
  write (10, *) "  999.0  )"
  rewind (10)
  rewind (10)
  read (10,*) a
  read (10,*) a
  if (a.ne.(99.0, 999.0)) call abort ()
  if (a.ne.(99.0, 999.0)) call abort ()
! Test a new records and blank records before and after the.comma
! Test a new records and blank records before and after the.comma
  rewind (10)
  rewind (10)
  write (10, *) " ( 0.99   "
  write (10, *) " ( 0.99   "
  write (10, *) "          "
  write (10, *) "          "
  write (10, *) ",         "
  write (10, *) ",         "
  write (10, *) "          "
  write (10, *) "          "
  write (10, *) "  9.9    )"
  write (10, *) "  9.9    )"
  rewind (10)
  rewind (10)
  read (10,*) a
  read (10,*) a
  if (a.ne.(0.99, 9.9)) call abort ()
  if (a.ne.(0.99, 9.9)) call abort ()
  close (10)
  close (10)
end program complex_read
end program complex_read
 
 

powered by: WebSVN 2.1.0

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