Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/streamio_13.f90 @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 84e7813d76e9 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do run } |
2 ! PR 34405 - BACKSPACE for unformatted stream files is prohibited. | |
3 program main | |
4 implicit none | |
5 integer :: ios | |
6 character(len=80) :: msg | |
7 open(2003,form="unformatted",access="stream",status="scratch") | |
8 write (2003) 1 | |
9 write (2003) 2 | |
10 ios = 0 | |
11 msg = ' ' | |
12 backspace (2003,iostat=ios,iomsg=msg) | |
13 if (ios == 0 .or. msg /="Cannot BACKSPACE an unformatted stream file") & | |
131 | 14 STOP 1 |
111 | 15 end program main |