summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/access.c
blob: 065206b748ad38a4277d0b02cce841c7c7c0a675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* COVERAGE: access */
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>


int main()
{
  int fd1;

  fd1 = creat("foobar1",S_IREAD|S_IWRITE);

  access("foobar1", F_OK);
  // access ("foobar1", F_OK) = 0

  access("foobar1", R_OK);
  // access ("foobar1", R_OK) = 0

  access("foobar1", W_OK);
  // access ("foobar1", W_OK) = 0

  access("foobar1", X_OK);
  // access ("foobar1", X_OK) = -NNNN (EACCES)

  access("foobar1", R_OK|W_OK);
  // access ("foobar1", W_OK |R_OK) = 0

  access("foobar1", R_OK|W_OK|X_OK);
  // access ("foobar1", X_OK |W_OK |R_OK) = -NNNN (EACCES)

  return 0;
}