summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr12884.f
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gfortran.dg/pr12884.f
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pr12884.f')
-rw-r--r--gcc/testsuite/gfortran.dg/pr12884.f25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr12884.f b/gcc/testsuite/gfortran.dg/pr12884.f
new file mode 100644
index 000000000..425604c02
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/pr12884.f
@@ -0,0 +1,25 @@
+c { dg-do run }
+c pr 12884
+c test namelist with input file containg / before namelist. Also checks
+c non-standard use of $ instead of &
+c Based on example provided by jean-pierre.flament@univ-lille1.fr
+
+ program pr12884
+ integer ispher,nosym,runflg,noprop
+ namelist /cntrl/ ispher,nosym,runflg,noprop
+ ispher = 0
+ nosym = 0
+ runflg = 0
+ noprop = 0
+ open (10, status = "scratch")
+ write (10, '(A)') " $FILE"
+ write (10, '(A)') " pseu dir/file"
+ write (10, '(A)') " $END"
+ write (10, '(A)') " $cntrl ispher=1,nosym=2,"
+ write (10, '(A)') " runflg=3,noprop=4,$END"
+ write (10, '(A)')"/"
+ rewind (10)
+ read (10, cntrl)
+ if ((ispher.ne.1).or.(nosym.ne.2).or.(runflg.ne.3).or.
+ & (noprop.ne.4)) call abort ()
+ end