PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / stat_1.f90
bloba170393db64a26f08cd6a1f66c7fe44701c4d7ff
1 ! { dg-do run }
2 ! { dg-skip-if "" { *-*-mingw* spu-*-* } }
3 ! { dg-options "-std=gnu" }
4 character(len=*), parameter :: f = "testfile_stat_1"
5 integer :: s1(13), r1, s2(13), r2, s3(13), r3, d(13), rd
7 open (10,file=f)
8 write (10,"(A)") "foo"
9 close (10,status="keep")
11 open (10,file=f)
12 call lstat (f, s1, r1)
13 call stat (f, s2, r2)
14 call fstat (10, s3, r3)
15 call stat (".", d, rd)
17 if (r1 /= 0 .or. r2 /= 0 .or. r3 /= 0 .or. rd /= 0) STOP 1
18 if (any (s1 /= s2) .or. any (s1 /= s3)) STOP 2
19 if (s1(5) /= getuid()) STOP 3
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) STOP 4
24 if (s1(8) < 3 .or. s1(8) > 5) STOP 5
26 close (10,status="delete")
27 end