URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [chmod_2.f90] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-options "-std=gnu" }
implicit none
character(len=*), parameter :: n = "foobar_file"
integer :: i
open (10,file=n)
close (10,status="delete")
open (10,file=n)
close (10,status="keep")
if (access(n,"") /= 0 .or. access(n," ") /= 0 .or. access(n,"r") /= 0 .or. &
access(n,"R") /= 0 .or. access(n,"w") /= 0 .or. access(n,"W") /= 0) &
call abort
i = chmod (n, "a+x")
if (i == 0) then
if (access(n,"x") /= 0 .or. access(n,"X") /= 0) call abort
end if
i = chmod (n, "a-w")
if (i == 0 .and. getuid() /= 0) then
if (access(n,"w") == 0 .or. access(n,"W") == 0) call abort
end if
open (10,file=n)
close (10,status="delete")
if (access(n,"") == 0 .or. access(n," ") == 0 .or. access(n,"r") == 0 .or. &
access(n,"R") == 0 .or. access(n,"w") == 0 .or. access(n,"W") == 0) &
call abort
end
Go to most recent revision | Compare with Previous | Blame | View Log