PR libfortran/23262
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_12.f
blobe6d122463f1b091e016d27fb8f53985f723d69f5
1 c{ dg-do run }
2 c This program repeats many of the same tests as test_nml_1 but for integer instead of real.
3 c It also tests repeat nulls, comma delimited character read, a triplet qualifier, a range with
4 c and assumed start, a quote delimited string, a qualifier with an assumed end and a fully
5 c explicit range. It also tests that integers and characters are successfully read back by
6 c namelist.
7 c Provided by Paul Thomas - pault@gcc.gnu.org
9 program namelist_12
11 integer*4 x(10)
12 integer*8 xx
13 integer ier
14 character*10 ch , check
15 namelist /mynml/ x, xx, ch
17 c set debug = 0 or 1 in the namelist! (line 33)
19 do i = 1 , 10
20 x(i) = -1
21 end do
22 x(6) = 6
23 x(10) = 10
24 xx = 0
25 ch ="zzzzzzzzzz"
26 check="abcdefghij"
28 open (10,status="scratch")
29 write (10, *) "!mynml"
30 write (10, *) " "
31 write (10, *) "&mynml x(7) =+99 x=1, 2 ,"
32 write (10, *) " 2*3, ,, 2* !comment"
33 write (10, *) " 9 ch=qqqdefghqq , x(8:7:-1) = 8 , 7"
34 write (10, *) " ch(:3) =""abc"","
35 write (10, *) " ch(9:)='ij' x(4:5)=4 ,5 xx = 42/"
36 rewind (10)
38 read (10, nml=mynml, IOSTAT=ier)
39 if (ier.ne.0) call abort
40 rewind (10)
42 write (10, nml=mynml, iostat=ier)
43 if (ier.ne.0) call abort
44 rewind (10)
46 read (10, NML=mynml, IOSTAT=ier)
47 if (ier.ne.0) call abort
48 close (10)
50 do i = 1 , 10
51 if ( abs( x(i) - i ) .ne. 0 ) call abort ()
52 if ( ch(i:i).ne.check(I:I) ) call abort
53 end do
54 if (xx.ne.42) call abort ()
56 end program