Commit 791e8c9c by Jerry DeLisle

re PR libfortran/42742 (Handle very large format strings correctly)

2010-02-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/42742
	* gfortran.dg/fmt_cache_2.f: New test.

From-SVN: r156569
parent 6c076a6c
2010-02-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/42742
* gfortran.dg/fmt_cache_2.f: New test.
2010-02-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
* gfortran.dg/read_no_eor.f90: New test.
2010-02-05 Jason Merrill <jason@redhat.com>
......
! { dg-do run }
! PR42742 Handle very large format strings correctly
! Test derived from example developed by Manfred Schwarb.
character(12) bufarr(74)
character(74*13+30) fmtstr,fmtstr2
character(1) delim
integer i,j,dat(5),pindx, loopcounter
character(983) big_string ! any less and this test fails.
do i=1,74
write(bufarr(i),'(i12)') i
enddo
delim=" "
dat(1)=2009
dat(2)=10
dat(3)=31
dat(4)=3
dat(5)=0
fmtstr="(i2,i6,4(a1,i2.2)"
open(10, status="scratch")
do j=1,74
fmtstr=fmtstr(1:len_trim(fmtstr))//",a1,a12"
fmtstr2=fmtstr(1:len_trim(fmtstr))//")"
c write(0,*) "interation ",j,": ",len_trim(fmtstr2)
do i=1,10
write(10,fmtstr2)
& i,dat(1),"-",dat(2),"-",dat(3),
& delim,dat(4),":",dat(5),
& (delim,bufarr(pindx),pindx=1,j)
enddo
loopcounter = j
enddo
close(10)
if (loopcounter /= 74) call abort
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment