re PR libfortran/25419 (gfortran read does not take comma for default on one entry)
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 28 Dec 2005 07:00:47 +0000 (07:00 +0000)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Wed, 28 Dec 2005 07:00:47 +0000 (07:00 +0000)
2005-12-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR libgfortran/25419
* gfortran.dg/comma.f: New test.

From-SVN: r109100

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/comma.f [new file with mode: 0644]

index 4f9a0002cbc09149568b32a377fa91e276100033..daa90ea3fdb7f8d1618a96a421e1fc5af9fb2376 100644 (file)
@@ -1,3 +1,8 @@
+2005-12-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libgfortran/25419
+       * gfortran.dg/comma.f: New test.
+
 2005-12-28  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * lib/gfortran-dg.exp: Remove trailing whitespace.
diff --git a/gcc/testsuite/gfortran.dg/comma.f b/gcc/testsuite/gfortran.dg/comma.f
new file mode 100644 (file)
index 0000000..d497693
--- /dev/null
@@ -0,0 +1,18 @@
+! { dg-do run }
+! PR25419 Default input with commas.
+! Derived from example given in PR.
+! Contributed by Jerry DeLisle  <jvdelisle@gcc.gnu.org> 
+      stuff = 1
+      stuff2 = 2
+      write(11,'(a)') ",,"
+      rewind(11)
+      read(11,*)stuff, stuff2
+      if (stuff.ne.1.0) call abort()
+      if (stuff2.ne.2.0) call abort()
+      rewind (11)
+      write(11,'(a)') ","
+      rewind(11)
+      read(11,*)stuff
+      if (stuff.ne.1.0) call abort()
+      end
+