2010-11-30 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / fmt_p_1.f90
blob2f3c66289a8c88e265a2f4f99571d5e2b9ccf3d9
1 ! { dg-do run }
2 ! PR32554 Bug in P formatting
3 ! Test case from the bug reporter
4 program gfcbug66
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
12 end program gfcbug66