re PR fortran/35627 (namelist read error)
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Thu, 20 Mar 2008 02:07:38 +0000 (02:07 +0000)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Thu, 20 Mar 2008 02:07:38 +0000 (02:07 +0000)
2008-03-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libfortran/35627
* gfortran.dg/namelist_46.f90: New test.

From-SVN: r133361

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/namelist_46.f90 [new file with mode: 0644]

index d3758f9..d948c18 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/35627
+       * gfortran.dg/namelist_46.f90: New test.
+
 2008-03-20  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/14552
diff --git a/gcc/testsuite/gfortran.dg/namelist_46.f90 b/gcc/testsuite/gfortran.dg/namelist_46.f90
new file mode 100644 (file)
index 0000000..0f048cf
--- /dev/null
@@ -0,0 +1,23 @@
+! { dg-do run }
+! PR35627 Namelist read problem with short logical followed by read real
+program test
+  implicit none
+    LOGICAL :: nlco(200)  ! (1:nbeam)
+    REAL(kind=8):: xlbtna(200)  ! (1:nbeam)
+  NAMELIST/nbdrive_naml/ nlco, xlbtna
+    INTEGER :: nbshapa(200)  ! (1:nbeam)
+  NAMELIST/nbdrive_naml/ nbshapa
+  nlco = .false.
+  xlbtna = 0.0_8
+  nbshapa = 0
+  open(10, file='t.nml')
+  write(10,'(a)') "&nbdrive_naml"
+  write(10,'(a)') "nlco = 4*T,"
+  write(10,'(a)') "xlbtna = 802.8, 802.8, 802.8, 802.8"
+  write(10,'(a)') "nbshapa = 4*1"
+  write(10,'(a)') "/"
+  rewind(10)
+  read(10, nbdrive_naml)
+  !write(*,nbdrive_naml)
+  close(10, status="delete")
+end program test