OSDN Git Service

PR testsuite/35406
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / arrayio_8.f90
1 ! { dg-do run }
2 ! PR28339, This test checks that internal unit array I/O handles a full record
3 ! and and advances to th enext record properly.  Test case derived from PR
4 ! Submitted by Jerry DeLisle  <jvdelisle@gcc.gnu.org>
5       program main
6       integer          i
7       character*8      rec(3)
8       rec = ""
9       write (rec,fmt=99999)
10       if (rec(1).ne.'12345678') call abort()
11       if (rec(2).ne.'record2') call abort()
12       if (rec(3).ne.'record3') call abort()
13 99999 format ('12345678',/'record2',/'record3')
14       end
15