OSDN Git Service

2005-07-17 Jerry DeLisle <jvdelisle@verizon.net>
authorjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jul 2005 00:07:53 +0000 (00:07 +0000)
committerjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jul 2005 00:07:53 +0000 (00:07 +0000)
    * gfortran.fortran-torture/execute/nan_inf_fmt.f90: Change case of field
    width of 8 to +Inf and -Inf.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102124 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.fortran-torture/execute/nan_inf_fmt.f90

index 2f18605..80b9604 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-17  Jerry DeLisle  <jvdelisle@verizon.net>
+    * gfortran.fortran-torture/execute/nan_inf_fmt.f90: Change case of field
+    width of 8 to +Inf and -Inf.
+    
 2005-07-17  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/22139
index 84322c6..86e6916 100644 (file)
@@ -52,9 +52,9 @@
 ! check a field width = 8
        fmt = '(F8.0)'
        write(l,fmt=fmt)pos_inf
-       if (l.ne.'Infinity') call abort
+       if (l.ne.'    +Inf') call abort
        write(l,fmt=fmt)neg_inf
-       if (l.ne.'Infinity') call abort
+       if (l.ne.'    -Inf') call abort
        write(l,fmt=fmt)nan
        if (l.ne.'     NaN') call abort