PR target/83368
[official-gcc.git] / gcc / testsuite / gfortran.dg / inquire_13.f90
blobd074861a97b9858f4f0913ef8c66c96bd683b325
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! PR34795 inquire statement , direct= specifier incorrectly returns YES
5 ! Test case from PR, modified by Jerry DeLisle <jvdelisle@gcc.gnu.org
6 program testinquire
7 implicit none
8 character drct*7, acc*12, frmt*12, seqn*12, fname*15
9 logical opn
11 fname="inquire_13_test"
12 inquire(unit=6, direct=drct, opened=opn, access=acc)
13 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
15 inquire(unit=10, direct=drct, opened=opn, access=acc)
16 if (drct.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
18 inquire(unit=10, direct=drct, opened=opn, access=acc, formatted=frmt)
19 if (drct.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
20 if (frmt.ne."UNKNOWN") call abort
22 open(unit=19,file=fname,status='replace',err=170,form="formatted")
23 inquire(unit=19, direct=drct, opened=opn, access=acc,formatted=frmt)
24 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
25 if (frmt.ne."YES") call abort
27 ! Inquire on filename, open file with DIRECT and FORMATTED
28 inquire(file=fname, direct=drct, opened=opn, access=acc, FORMATTED=frmt)
29 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
30 if (frmt.ne."YES") call abort
31 close(19)
33 ! Inquire on filename, closed file with DIRECT and FORMATTED
34 inquire(file=fname, direct=drct, opened=opn, access=acc, formatted=frmt)
35 if (drct.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
36 if (frmt.ne."UNKNOWN") call abort
38 open(unit=19,file=fname,status='replace',err=170,form="unformatted")
39 inquire(unit=19, direct=drct, opened=opn, access=acc, formatted=frmt)
40 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
41 if (frmt.ne."NO") call abort
42 close(19)
44 open(unit=19,file=fname,status='replace',err=170,form="formatted")
46 inquire(unit=19, direct=drct, opened=opn, access=acc, unformatted=frmt)
47 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
49 ! Inquire on filename, open file with DIRECT and UNFORMATTED
50 inquire(file=fname, direct=drct, opened=opn, access=acc, UNFORMATTED=frmt)
51 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
52 if (frmt.ne."NO") call abort
53 close(19)
55 ! Inquire on filename, closed file with DIRECT and UNFORMATTED
56 inquire(file=fname, direct=drct, opened=opn, access=acc, unformatted=frmt)
57 if (drct.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
58 if (frmt.ne."UNKNOWN") call abort
60 open(unit=19,file=fname,status='replace',err=170,form="unformatted")
62 inquire(unit=19, direct=drct, opened=opn, access=acc,unformatted=frmt)
63 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
64 if (frmt.ne."YES") call abort
65 close(19)
67 open(unit=19,file=fname,status='replace',err=170)
69 inquire(unit=19, direct=drct, opened=opn, access=acc)
70 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
71 close(19)
73 open(unit=19,file=fname,status='replace',err=170,access='SEQUENTIAL')
75 inquire(unit=19, direct=drct, opened=opn, access=acc)
76 if (drct.ne."NO" .and. .not.opn .and. acc.ne."SEQUENTIAL") call abort
78 ! Inquire on filename, open file with SEQUENTIAL
79 inquire(file=fname, SEQUENTIAL=seqn, opened=opn, access=acc)
80 if (seqn.ne."YES" .and. .not.opn .and. acc.ne."DIRECT") call abort
81 close(19)
83 ! Inquire on filename, closed file with SEQUENTIAL
84 inquire(file=fname, SEQUENTIAL=seqn, opened=opn, access=acc)
85 if (seqn.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
87 open(unit=19,file=fname,status='replace',err=170,form='UNFORMATTED',access='DIRECT',recl=72)
89 inquire(unit=19, direct=drct, opened=opn, access=acc)
90 if (drct.ne."YES" .and. .not.opn .and. acc.ne."DIRECT") call abort
92 ! Inquire on filename, open file with DIRECT
93 inquire(file=fname, direct=drct, opened=opn, access=acc)
94 if (drct.ne."YES" .and. .not.opn .and. acc.ne."DIRECT") call abort
95 close(19, status="delete")
97 ! Inquire on filename, closed file with DIRECT
98 inquire(file=fname, direct=drct, opened=opn, access=acc)
99 if (drct.ne."UNKNOWN" .and. opn .and. acc.ne."UNDEFINED") call abort
100 stop
102 170 write(*,*) "ERROR: unable to open testdirect.f"