OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [list_read_2.f90] - Blame information for rev 720

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

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
! { dg-options "-std=legacy" }
3
!
4
! PR16805
5
! Test list directed reads from character substrings
6
! The IO library was reporting an error rather the end-of-record when it
7
! got to the end of an internal file record.
8
program list_read_2
9
  implicit none
10
  character*10 a
11
  data a /'1234567890'/
12
  integer i
13
  logical debug
14
  data debug /.TRUE./
15
  read(a,*)i
16
  if (i.ne.1234567890) call abort
17
  read(a(1:1),*)i
18
  if (i.ne.1) call abort
19
  read(a(2:2),*)i
20
  if (i.ne.2) call abort
21
  read(a(1:5),*)i
22
  if (i.ne.12345) call abort
23
  read(a(5:10),*)i
24
  if (i.ne.567890) call abort
25
  read(a(10:10),*)i
26
  if (i.ne.0) call abort
27
end

powered by: WebSVN 2.1.0

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