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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [namelist_55.f90] - Blame information for rev 700

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
! { dg-options "-std=legacy" }
3
!
4
! PR37707 Namelist read of array of derived type incorrect
5
! Test case from PR, prepared by Jerry DeLisle  
6
TYPE geometry
7
   INTEGER :: nlon,nlat,nlev,projection
8
   INTEGER :: center,subcenter,process
9
   REAL    :: west,south,east,north
10
   REAL    :: dlon,dlat
11
   REAL    :: polat,polon
12
   REAL    :: lonc,latc
13
   REAL    :: projlat,projlat2,projlon
14
   CHARACTER(LEN=1) :: arakawa ='#'
15
   INTEGER :: truncx,truncy   ! Spectral truncation
16
   INTEGER :: cie             ! Flag fort CI (0), CIE gridpoint (1)
17
                              ! or CIE spectral (-1)
18
   INTEGER :: nlat_i,nlon_i   ! I length in Y and X direction
19
   INTEGER :: nlat_e ,nlon_e  ! E length in Y and X direction
20
   LOGICAL :: do_geo = .true.
21
END TYPE geometry
22
 
23
TYPE shortkey
24
   INTEGER           :: PPP !  2. Parameter
25
   INTEGER           :: NNN ! 12. Gridpoint or spectral field 0 = gridpoint, 1 = spectral
26
   INTEGER           :: INTPM
27
   CHARACTER(LEN=16) :: name
28
END TYPE shortkey
29
INTEGER, PARAMETER :: maxl       = 200  ! Maximum number of levels to be read from namelist
30
INTEGER, PARAMETER :: max_atmkey = 10   ! Maximum number of extra fields in the
31
 
32
REAL    :: ahalf(maxl),bhalf(maxl)
33
TYPE (geometry) :: outgeo ; SAVE outgeo  ! Output geometry
34
 
35
TYPE (shortkey) ::  atmkey(max_atmkey) ; SAVE atmkey
36
TYPE (shortkey) :: mlevkey(max_atmkey) ; SAVE mlevkey
37
 
38
character*600 :: l = " &NAMINTERP atmkey%ppp = 076,058,062,079, atmkey%nnn = 000,000,000,000, &
39
                     & atmkey%name ='LIQUID_WATER','SOLID_WATER','SNOW','RAIN', OUTGEO%NLEV=10, &
40
                     & AHALF=0.,1.,2.,3.,4.,5.,6.,7.,8.,9., BHALF=0.,1.,2.,3.,4.,5.,6.,7.,8.,9., /"
41
 
42
namelist /naminterp/outgeo,ahalf,bhalf,atmkey
43
print *, outgeo%nlev
44
read(l,nml=naminterp)
45
if (outgeo%nlev /= 10) call abort
46
if (any(ahalf(1:10) .ne. [0.,1.,2.,3.,4.,5.,6.,7.,8.,9.])) call abort
47
if (any(bhalf(1:10) .ne. [0.,1.,2.,3.,4.,5.,6.,7.,8.,9.])) call abort
48
if (any(atmkey(1:4)%ppp .ne. [076,058,062,079])) call abort
49
if (any(atmkey(1:4)%nnn .ne. [0,0,0,0])) call abort
50
if (any(atmkey(1:4)%name .ne. ['LIQUID_WATER','SOLID_WATER ','SNOW        ',&
51
                              &'RAIN        '])) call abort
52
end

powered by: WebSVN 2.1.0

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