2 ! { dg-skip-if "" { *-*-mingw* spu-*-* } { "*" } { "" } }
3 ! { dg-options "-std=gnu" }
4 character(len
=*), parameter :: f
= "testfile"
5 integer :: s1(13), r1
, s2(13), r2
, s3(13), r3
, d(13), rd
9 close (10,status
="keep")
12 call lstat (f
, s1
, r1
)
14 call fstat (10, s3
, r3
)
15 call stat (".", d
, rd
)
17 if (r1
/= 0 .or
. r2
/= 0 .or
. r3
/= 0 .or
. rd
/= 0) call abort
18 if (any (s1
/= s2
) .or
. any (s1
/= s3
)) call abort
19 if (s1(5) /= getuid()) call abort
20 ! If the test is run in a directory with the sgid bit set or on a filesystem
21 ! mounted with the grpid option, new files are created with the directory's
22 ! gid instead of the user's primary gid, so allow for that.
23 if (s1(6) /= getgid() .and
. s1(6) /= d(6) .and
. getgid() /= 0) call abort
24 if (s1(8) < 3 .or
. s1(8) > 5) call abort
26 close (10,status
="delete")