OSDN Git Service

2005-12-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
authorjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Dec 2005 07:00:47 +0000 (07:00 +0000)
committerjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 28 Dec 2005 07:00:47 +0000 (07:00 +0000)
PR libgfortran/25419
* gfortran.dg/comma.f: New test.

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

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

index 4f9a000..daa90ea 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
+