aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/inquire.f90
blob: 7115913c6c6346b089e0fbdda9a8f9a6089a4788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do run }
! { dg-options "-std=legacy" }
!
! check to see that you cannot open a direct access file
! for sequential i/o.
! derived from NIST test fm910.for
        IMPLICIT NONE
        CHARACTER*10 D4VK
        OPEN(UNIT=7, ACCESS='DIRECT',RECL=132,STATUS='SCRATCH')
        INQUIRE(UNIT=7,SEQUENTIAL=D4VK)
        CLOSE(UNIT=7,STATUS='DELETE')
        IF (D4VK.NE.'NO') CALL ABORT
        END