URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [stat_1.f90] - Rev 816
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-std=gnu" }character(len=*), parameter :: f = "testfile"integer :: s1(13), r1, s2(13), r2, s3(13), r3open (10,file=f)write (10,"(A)") "foo"close (10,status="keep")open (10,file=f)call lstat (f, s1, r1)call stat (f, s2, r2)call fstat (10, s3, r3)if (r1 /= 0 .or. r2 /= 0 .or. r3 /= 0) call abortif (any (s1 /= s2) .or. any (s1 /= s3)) call abortif (s1(5) /= getuid()) call abortif (s1(6) /= getgid() .and. getgid() /= 0) call abortif (s1(8) < 3 .or. s1(8) > 5) call abortclose (10,status="delete")end
