OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [chmod_1.f90] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run { target { ! { *-*-mingw* *-*-cygwin* spu-*-* } } } }
2
! { dg-options "-std=gnu" }
3
! See PR38956.  Test fails on cygwin when user has Administrator rights
4
  implicit none
5
  character(len=*), parameter :: n = "foobar_file"
6
  integer :: i
7
 
8
  open (10,file=n)
9
  close (10,status="delete")
10
 
11
  open (10,file=n)
12
  close (10,status="keep")
13
 
14
  if (access(n,"") /= 0 .or. access(n," ") /= 0 .or. access(n,"r") /= 0 .or. &
15
      access(n,"R") /= 0 .or. access(n,"w") /= 0 .or. access(n,"W") /= 0) &
16
    call abort
17
 
18
  call chmod (n, "a+x", i)
19
  if (i == 0) then
20
    if (access(n,"x") /= 0 .or. access(n,"X") /= 0) call abort
21
  end if
22
 
23
  call chmod (n, "a-w", i)
24
  if (i == 0 .and. getuid() /= 0) then
25
    if (access(n,"w") == 0 .or. access(n,"W") == 0) call abort
26
  end if
27
 
28
  open (10,file=n)
29
  close (10,status="delete")
30
 
31
  if (access(n,"") == 0 .or. access(n," ") == 0 .or. access(n,"r") == 0 .or. &
32
      access(n,"R") == 0 .or. access(n,"w") == 0 .or. access(n,"W") == 0) &
33
    call abort
34
 
35
  end

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.