re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / iomsg_1.f90
blob026eec2a07c5da900490c68d2f8910903e455fe2
1 ! { dg-do run }
2 ! Test implementation of the iomsg tag.
3 program iomsg_test
4 character(len=70) ch
6 ! Test that iomsg is left unchanged with no error
7 ch = 'asdf'
8 open(10, status='scratch', iomsg=ch, iostat=i)
9 if (ch .ne. 'asdf') STOP 1
11 ! Test iomsg with data transfer statement
12 read(10,'(I2)', iomsg=ch, end=100) k
13 STOP 2
14 100 continue
15 if (ch .ne. 'End of file') STOP 3
17 ! Test iomsg with open
18 open (-3, err=200, iomsg=ch)
20 STOP 4
21 200 continue
22 if (ch .ne. 'Bad unit number in OPEN statement') STOP 5
24 ! Test iomsg with close
25 close(23,status="no_idea", err=500, iomsg=ch) ! { dg-warning "STATUS specifier in CLOSE statement.*has invalid value" }
26 500 continue
27 if (ch .ne. "Bad STATUS parameter in CLOSE statement") STOP 6
28 end program iomsg_test