URL
                    https://opencores.org/ocsvn/openrisc/openrisc/trunk
                
            Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [inquire_5.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run { target fd_truncate } }!! pr19314 inquire(..position=..) segfaults! test by Thomas.Koenig@online.de! bdavis9659@comcast.netimplicit nonecharacter(len=20) chropen(7,STATUS='SCRATCH')inquire(7,position=chr)if (chr.NE.'ASIS') CALL ABORTclose(7)open(7,STATUS='SCRATCH',ACCESS='DIRECT',RECL=100)inquire(7,position=chr)if (chr.NE.'UNDEFINED') CALL ABORTclose(7)open(7,STATUS='SCRATCH',POSITION='REWIND')inquire(7,position=chr)if (chr.NE.'REWIND') CALL ABORTclose(7)open(7,STATUS='SCRATCH',POSITION='ASIS')inquire(7,position=chr)if (chr.NE.'ASIS') CALL ABORTclose(7)open(7,STATUS='SCRATCH',POSITION='APPEND')inquire(7,position=chr)if (chr.NE.'APPEND') CALL ABORTclose(7)open(7,STATUS='SCRATCH',POSITION='REWIND')write(7,*)'this is a record written to the file'write(7,*)'this is another record'backspace(7)inquire(7,position=chr)if (chr .NE. 'UNSPECIFIED') CALL ABORTrewind(7)inquire(7,position=chr)if (chr.NE.'REWIND') CALL ABORTclose(7)end
