summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/dir.c
blob: 3609fecd8e4eae3988beab9261d0bcec89fddc72 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* COVERAGE: mkdir chdir open fchdir close rmdir mkdirat */
#define _GNU_SOURCE
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/syscall.h>

int main()
{
  int fd;

  mkdir("foobar", 0765);
  // mkdir ("foobar", 0765) =

  chdir("foobar");
  // chdir ("foobar") = 0

  chdir("..");
  // chdir ("..") = 0

  fd = open("foobar", O_RDONLY);
  // open ("foobar", O_RDONLY) = 4

  fchdir(fd);
  // fchdir (4) = 0

  chdir("..");
  // chdir ("..") = 0

  close(fd);
  // close (4) = 0

  rmdir("foobar");
  // rmdir ("foobar") = 0

  fd = open(".", O_RDONLY);
  // open (".", O_RDONLY) = 4

#ifdef SYS_mkdirat
  mkdirat(fd, "xyzzy", 0765);
  // mkdirat (4, "xyzzy", 0765) = 0

#endif

  close(fd);
  // close (4) = 0

  rmdir("xyzzy");
  // rmdir ("xyzzy") =

  return 0;
}