mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-04 17:10:24 +08:00
re PR libfortran/24459 ([4.1 Only] gfortran namelist problem)
2006-05-20 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/24459 * gfortran.dg/namelist_24.f90: New test. * gfortran.dg/namelist_12.f: Fix typo in comment. From-SVN: r113948
This commit is contained in:
parent
39431b5516
commit
80980ba989
@ -1,3 +1,9 @@
|
||||
2006-05-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/24459
|
||||
* gfortran.dg/namelist_24.f90: New test.
|
||||
* gfortran.dg/namelist_12.f: Fix typo in comment.
|
||||
|
||||
2006-05-20 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR middle-end/25776
|
||||
|
@ -1,7 +1,7 @@
|
||||
c{ dg-do run }
|
||||
c This program repeats many of the same tests as test_nml_1 but for integer
|
||||
c instead of real. It also tests repeat nulls, comma delimited character read,
|
||||
c a triplet qualifier, a range with and assumed start, a quote delimited string,
|
||||
c a triplet qualifier, a range with an assumed start, a quote delimited string,
|
||||
c a qualifier with an assumed end and a fully explicit range. It also tests
|
||||
c that integers and characters are successfully read back by namelist.
|
||||
c Provided by Paul Thomas - pault@gcc.gnu.org
|
||||
|
42
gcc/testsuite/gfortran.dg/namelist_24.f90
Normal file
42
gcc/testsuite/gfortran.dg/namelist_24.f90
Normal file
@ -0,0 +1,42 @@
|
||||
!{ dg-do run }
|
||||
!{ dg-options -std=gnu }
|
||||
! Tests namelist read when more data is provided then specified by
|
||||
! array qualifier in list.
|
||||
! Contributed by Jerry DeLisle <jvdelisle@gcc.gnu.org>.
|
||||
program pr24459
|
||||
implicit none
|
||||
integer nd, ier, i, j
|
||||
parameter ( nd = 5 )
|
||||
character*(8) names(nd,nd)
|
||||
character*(8) names2(nd,nd)
|
||||
character*(8) names3(nd,nd)
|
||||
namelist / mynml / names, names2, names3
|
||||
open(unit=20,status='scratch')
|
||||
write (20, '(a)') "&MYNML"
|
||||
write (20, '(a)') "NAMES = 25*'0'"
|
||||
write (20, '(a)') "NAMES2 = 25*'0'"
|
||||
write (20, '(a)') "NAMES3 = 25*'0'"
|
||||
write (20, '(a)') "NAMES(2,2) = 'frogger'"
|
||||
write (20, '(a)') "NAMES(1,1) = 'E123' 'E456' 'D789' 'P135' 'P246'"
|
||||
write (20, '(a)') "NAMES2(1:5:2,2) = 'abcde' 'fghij' 'klmno'"
|
||||
write (20, '(a)') "NAMES3 = 'E123' 'E456' 'D789' 'P135' 'P246' '0' 'frogger'"
|
||||
write (20, '(a)') "/"
|
||||
rewind(20)
|
||||
read(20,nml=mynml, iostat=ier)
|
||||
if (ier.ne.0) call abort()
|
||||
if (any(names(:,3:5).ne."0")) call abort()
|
||||
if (names(2,2).ne."frogger") call abort()
|
||||
if (names(1,1).ne."E123") call abort()
|
||||
if (names(2,1).ne."E456") call abort()
|
||||
if (names(3,1).ne."D789") call abort()
|
||||
if (names(4,1).ne."P135") call abort()
|
||||
if (names(5,1).ne."P246") call abort()
|
||||
if (any(names2(:,1).ne."0")) call abort()
|
||||
if (any(names2(:,3:5).ne."0")) call abort()
|
||||
if (names2(1,2).ne."abcde") call abort()
|
||||
if (names2(2,2).ne."0") call abort()
|
||||
if (names2(3,2).ne."fghij") call abort()
|
||||
if (names2(4,2).ne."0") call abort()
|
||||
if (names2(5,2).ne."klmno") call abort()
|
||||
if (any(names3.ne.names)) call abort()
|
||||
end
|
Loading…
Reference in New Issue
Block a user