re PR testsuite/41612 (FAIL: gfortran.dg/round_2.f03)

2009-10-06  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/41612
	* gfortran.dg/round_2.f03: Fix test to work on platforms that do not
	have kind=10 reals.

From-SVN: r152510
This commit is contained in:
Jerry DeLisle 2009-10-07 01:24:27 +00:00
parent 5edc1f14fa
commit e4f512b710
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2009-10-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/41612
* gfortran.dg/round_2.f03: Fix test to work on platforms that do not
have kind=10 reals.
2009-10-06 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/lambda/lambda-init.C: New.

View File

@ -1,16 +1,17 @@
! { dg-do run }
! PR35962 Implement F2003 rounding modes.
! Test case prepared by Jerry Delisle <jvdelisle@gcc.gnu.org>
integer,parameter :: k = selected_real_kind (precision (0.0_8) + 1)
character(64) :: line
write(line, '(RN, 4F10.3)') 0.0625_10, 0.1875_10
write(line, '(RN, 4F10.3)') 0.0625_k, 0.1875_k
if (line.ne." 0.062 0.188") call abort
write(line, '(RN, 4F10.2)') 0.125_10, 0.375_10, 1.125_10, 1.375_10
write(line, '(RN, 4F10.2)') 0.125_k, 0.375_k, 1.125_k, 1.375_k
if (line.ne." 0.12 0.38 1.12 1.38") call abort
write(line, '(RN, 4F10.1)') 0.25_10, 0.75_10, 1.25_10, 1.75_10
write(line, '(RN, 4F10.1)') 0.25_k, 0.75_k, 1.25_k, 1.75_k
if (line.ne." 0.2 0.8 1.2 1.8") call abort
write(line, '(RN, 4F10.0)') 0.5_10, 1.5_10, 2.5_10, 3.5_10
write(line, '(RN, 4F10.0)') 0.5_k, 1.5_k, 2.5_k, 3.5_k
if (line.ne." 0. 2. 2. 4.") call abort
end