aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/comma.f
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/comma.f')
-rw-r--r--gcc/testsuite/gfortran.dg/comma.f18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/comma.f b/gcc/testsuite/gfortran.dg/comma.f
new file mode 100644
index 00000000000..d4976935381
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/comma.f
@@ -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
+