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/] [namelist_43.f90] - Diff between revs 302 and 384

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 302 Rev 384
! { dg-do run }
! { dg-do run }
! { dg-add-options ieee }
! { dg-add-options ieee }
! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
!
!
! PR fortran/34427
! PR fortran/34427
!
!
! Check that namelists and the real values Inf, NaN, Infinity
! Check that namelists and the real values Inf, NaN, Infinity
! properly coexist with interceding line ends and spaces.
! properly coexist with interceding line ends and spaces.
!
!
PROGRAM TEST
PROGRAM TEST
  IMPLICIT NONE
  IMPLICIT NONE
  real , DIMENSION(10) ::foo
  real , DIMENSION(10) ::foo
  integer :: infinity
  integer :: infinity
  integer :: numb
  integer :: numb
  NAMELIST /nl/ foo
  NAMELIST /nl/ foo
  NAMELIST /nl/ infinity
  NAMELIST /nl/ infinity
  foo = -1.0
  foo = -1.0
  infinity = -1
  infinity = -1
  open (10, status="scratch")
  open (10, status="scratch")
  write (10,'(a)') " &nl foo(1:6) = 5, 5, 5, nan, infinity"
  write (10,'(a)') " &nl foo(1:6) = 5, 5, 5, nan, infinity"
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)') "infinity"
  write (10,'(a)') "infinity"
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)') "         "
  write (10,'(a)') "         "
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)')
  write (10,'(a)') "=1/"
  write (10,'(a)') "=1/"
  rewind (10)
  rewind (10)
  READ (10, NML = nl)
  READ (10, NML = nl)
  CLOSE (10)
  CLOSE (10)
  if(infinity /= 1) call abort
  if(infinity /= 1) call abort
  if(any(foo(1:3) /= [5.0, 5.0, 5.0]) .or. .not.isnan(foo(4)) &
  if(any(foo(1:3) /= [5.0, 5.0, 5.0]) .or. .not.isnan(foo(4)) &
     .or. (foo(5) <= huge(foo)) .or. any(foo(6:10) /= -1.0)) &
     .or. (foo(5) <= huge(foo)) .or. any(foo(6:10) /= -1.0)) &
    call abort
    call abort
END PROGRAM TEST
END PROGRAM TEST
 
 

powered by: WebSVN 2.1.0

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