ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_error_10.f
blob7ea6aec1220738f99fface0dc7ed1243cca22561
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) STOP 1
13 if (line.ne." 1.000000000000000D+001.E+00") STOP 2
15 write (line,'(1pd24.15e6)',iostat=istat, iomsg=msg) 1.0d0, 1.234 ! { dg-warning "Period required" }
16 if (istat.ne.0) STOP 3
17 if (line.ne." 1.000000000000000D+001.E+00") STOP 4
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 ") STOP 5
22 read (*,str,iostat=istat, iomsg=msg) x
23 if (istat.ne.5006 .or. msg(1:15).ne."Positive width ") STOP 6
24 if (x.ne.555.25) STOP 7
26 write (line,'(1pd24.15e11.3)') 1.0d0, 1.234
27 if (line.ne." 1.000000000000000D+00 1.234E+00") STOP 8
29 end