OSDN Git Service

2010-03-17 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / fmt_p_1.f90
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
13