OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [inquire_size.f90] - Blame information for rev 325

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
! PR43409 I/O: INQUIRE for SIZE does not work.
3
integer :: i
4
character(30) :: aname = "noname"
5
logical :: is_named
6
 
7
open(25, file="testfile", status="replace", access="stream", form="unformatted")
8
do i=1,100
9
  write(25) i, "abcdefghijklmnopqrstuvwxyz"
10
enddo
11
flush(25)
12
 
13
inquire(unit=25, named=is_named, name=aname, size=i)
14
if (.not.is_named) call abort
15
if (aname /= "testfile") call abort
16
if (i /= 3000) call abort
17
 
18
inquire(file="testfile", size=i)
19
if (.not.is_named) call abort
20
if (aname /= "testfile") call abort
21
if (i /= 3000) call abort
22
 
23
close(25, status="delete")
24
inquire(file="testfile", size=i)
25
if (i /= -1)  call abort
26
end
27
 
28
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.