re PR libfortran/24489 (read_block wrong execution order)
2005-10-23 Jerry DeLisle <jvdelisle@verizon.net> PR libgfortran/24489 * gfortran.dg/pr24489.f90: New test. From-SVN: r105839
This commit is contained in:
parent
7aaf280e70
commit
9da7372540
@ -1,3 +1,8 @@
|
||||
2005-10-23 Jerry DeLisle <jvdelisle@verizon.net>
|
||||
|
||||
PR libgfortran/24489
|
||||
* gfortran.dg/pr24489.f90: New test.
|
||||
|
||||
2005-10-23 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR fortran/23635
|
||||
|
14
gcc/testsuite/gfortran.dg/pr24489.f90
Normal file
14
gcc/testsuite/gfortran.dg/pr24489.f90
Normal file
@ -0,0 +1,14 @@
|
||||
! { dg-do run }
|
||||
! PR24489 Assure that read does not go past the end of record. The width of
|
||||
! the format specifier is 8, but the internal unit record length is 4 so only
|
||||
! the first 4 characters should be read.
|
||||
! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.
|
||||
program pr24489
|
||||
character*4, dimension(8) :: abuf = (/"0123","4567","89AB","CDEF", &
|
||||
"0123","4567","89AB","CDEF"/)
|
||||
character*4, dimension(2,4) :: buf
|
||||
character*8 :: a
|
||||
equivalence (buf,abuf)
|
||||
read(buf, '(a8)') a
|
||||
if (a.ne.'0123') call abort()
|
||||
end program pr24489
|
Loading…
Reference in New Issue
Block a user