Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_error_10.f
blobc2a9117bb682a1f0f81fac8185261dd1c8222a89
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
3 ! PR38439 I/O PD edit descriptor inconsistency
4 ! Test case prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org>
5 character(len=25) :: str
6 character(len=132) :: msg, line
7 str = '(1pd24.15e6)'
8 line = "initial string"
9 x = 555.25
11 write (line,str,iostat=istat, iomsg=msg) 1.0d0, 1.234
12 if (istat.ne.0) call abort
13 if (line.ne." 1.000000000000000D+001.E+00") call abort
15 write (line,'(1pd24.15e6)',iostat=istat, iomsg=msg) 1.0d0, 1.234 ! { dg-warning "Period required" }
16 if (istat.ne.0) call abort
17 if (line.ne." 1.000000000000000D+001.E+00") call abort
19 str = '(1pd0.15)'
20 write (line,str,iostat=istat, iomsg=msg) 1.0d0
21 if (istat.ne.5006 .or. msg(1:15).ne."Positive width ") call abort
22 read (*,str,iostat=istat, iomsg=msg) x
23 if (istat.ne.5006 .or. msg(1:15).ne."Positive width ") call abort
24 if (x.ne.555.25) call abort
26 write (line,'(1pd24.15e11.3)') 1.0d0, 1.234
27 if (line.ne." 1.000000000000000D+00 1.234E+00") call abort
29 end