From: Jerry DeLisle Date: Mon, 28 Aug 2006 05:17:09 +0000 (+0000) Subject: re PR libfortran/28354 ([4.1 Only] 0.99999 printed as 0. instead of 1. by format... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d8e3aa02cbbae89cf3bdb61208caa9346d08f17;p=gcc.git re PR libfortran/28354 ([4.1 Only] 0.99999 printed as 0. instead of 1. by format(f3.0)) 2006-08-27 Jerry DeLisle PR libgfortran/28354 * gfortran.dg/fmt_zero_precision.f90: New test. From-SVN: r116503 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index dd2456b89c7..65900a7e8b3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-08-27 Jerry DeLisle + + PR libgfortran/28354 + * gfortran.dg/fmt_zero_precision.f90: New test. + 2006-08-27 Mark Mitchell PR c++/28058 diff --git a/gcc/testsuite/gfortran.dg/fmt_zero_precision.f90 b/gcc/testsuite/gfortran.dg/fmt_zero_precision.f90 new file mode 100644 index 00000000000..ca66427ee65 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/fmt_zero_precision.f90 @@ -0,0 +1,30 @@ +! { dg-do run } +! PR28354 Incorrect rounding of .99999 with f3.0 format specifier +! Test case derived from PR. Submitted by Jerry DeLisle + write(*,50) -0.99999 + write(*,50) 0.99999 + write(*,50) -9.0 + write(*,50) -0.99 + write(*,50) -0.999 + write(*,50) -0.999 + write(*,50) -0.59 + write(*,50) -0.49 + write(*,100) 37.99999 + write(*,100) 10345.0 + write(*,100) 333.678 + write(*,100) 333.499 + 50 format(f3.0,"<") + 100 format(f8.0,"<") + end +! {dg-output "-1.<" +! {dg-output " 1.<" +! {dg-output "-9.<" +! {dg-output "-1.<" +! {dg-output "-1.<" +! {dg-output "-1.<" +! {dg-output "-1.<" +! {dg-output " 0.<" +! {dg-output " 38.<" +! {dg-output " 10345.<" +! {dg-output " 334.<" +! {dg-output " 333.<"