2 ! PR32554 Bug in P formatting
3 ! Test case from the bug reporter
5 real(8) :: x
= 1.0e-100_8
6 character(50) :: outstr
7 write (outstr
,'(1X,2E12.3)') x
, 2 * x
8 if (outstr
.ne
." 0.100E-99 0.200E-99") call abort
9 ! Before patch 2 * x was put out wrong
10 write (outstr
,'(1X,1P,2E12.3)') x
, 2 * x
11 if (outstr
.ne
." 1.000-100 2.000-100") call abort