]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR testsuite/41612 (FAIL: gfortran.dg/round_2.f03)
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 7 Oct 2009 01:24:27 +0000 (01:24 +0000)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 7 Oct 2009 01:24:27 +0000 (01:24 +0000)
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

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/round_2.f03

index dd18805a6cc683405335d1ac1c72fe2372f32bec..aa3886c92c54db9b04d1a49e544ea27aaadc9f74 100644 (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.
index f48ccaac64fa02bd7a2686f60fd330b7e20d82c1..aa04bbe3260866be473c2f63e18c3ec0992bfd6b 100644 (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