re PR fortran/35617 (read namelist error)
2008-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/35617 * gfortran.dg/namelist_45.f90: New test. From-SVN: r133303
This commit is contained in:
parent
5a79ae8432
commit
12da5c8ad1
@ -1,3 +1,8 @@
|
||||
2008-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/35617
|
||||
* gfortran.dg/namelist_45.f90: New test.
|
||||
|
||||
2008-03-17 James E. Wilson <wilson@tuliptree.org>
|
||||
|
||||
PR testsuite/35512
|
||||
|
18
gcc/testsuite/gfortran.dg/namelist_45.f90
Normal file
18
gcc/testsuite/gfortran.dg/namelist_45.f90
Normal file
@ -0,0 +1,18 @@
|
||||
! { dg-do run }
|
||||
! PR35617 read namelist error with '!'
|
||||
program test
|
||||
character(len=128) :: mhdpath
|
||||
namelist /nbdrive_naml/ mhdpath
|
||||
open(10, file='test.nml')
|
||||
|
||||
write(10,'(a)') "&nbdrive_naml"
|
||||
write(10,'(a)')
|
||||
write(10,'(a)') "!nstep_stop = 2 ! uncomment to bar"
|
||||
write(10,'(a)') "!nstep_start = 2 ! uncomment to foo"
|
||||
write(10,'(a)') " mhdpath = 'mypath.dat'"
|
||||
write(10,'(a)') "/"
|
||||
|
||||
rewind(10)
|
||||
read(10, nbdrive_naml)
|
||||
close(10,status="delete")
|
||||
end program test
|
Loading…
Reference in New Issue
Block a user