summaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.fortran-torture/execute/nan_inf_fmt.f9079
2 files changed, 84 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8fc34ba9d68..ec49a6676c8 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-12 Bud Davis <bdavis9659@comcast.net>
+
+ PR gfortran/12839
+ * gfortran.fortran-torture/execute/nan_inf_fmt.f90: New test.
+
2004-06-11 Mark Mitchell <mark@codesourcery.com>
PR c++/15862
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/nan_inf_fmt.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/nan_inf_fmt.f90
new file mode 100644
index 00000000000..84322c60679
--- /dev/null
+++ b/gcc/testsuite/gfortran.fortran-torture/execute/nan_inf_fmt.f90
@@ -0,0 +1,79 @@
+!pr 12839- F2003 formatting of Inf /Nan
+ implicit none
+ character*40 l
+ character*12 fmt
+ real zero, pos_inf, neg_inf, nan
+ zero = 0.0
+
+! need a better way of generating these floating point
+! exceptional constants.
+
+ pos_inf = 1.0/zero
+ neg_inf = -1.0/zero
+ nan = zero/zero
+
+
+! check a field width < 3
+ fmt = '(F2.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.'**') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.'**') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.'**') call abort
+
+! check a field width = 3
+ fmt = '(F3.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.'Inf') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.'Inf') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.'NaN') call abort
+
+! check a field width > 3
+ fmt = '(F4.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.'+Inf') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.'-Inf') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.' NaN') call abort
+
+! check a field width = 7
+ fmt = '(F7.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.' +Inf') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.' -Inf') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.' NaN') call abort
+
+! check a field width = 8
+ fmt = '(F8.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.'Infinity') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.'Infinity') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.' NaN') call abort
+
+! check a field width = 9
+ fmt = '(F9.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.'+Infinity') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.'-Infinity') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.' NaN') call abort
+
+! check a field width = 14
+ fmt = '(F14.0)'
+ write(l,fmt=fmt)pos_inf
+ if (l.ne.' +Infinity') call abort
+ write(l,fmt=fmt)neg_inf
+ if (l.ne.' -Infinity') call abort
+ write(l,fmt=fmt)nan
+ if (l.ne.' NaN') call abort
+ end
+