blob: 307b44472aff5cb1efcfe16dda3fe56c7f1a338f (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#if defined(__WIN32__) && !defined(__CYGWIN__)
/* Mostly skip on Windows, cf. main file why. */
int expect_open_to_fail () { return 1; }
void my_verify_not_exists (const char *dir) { }
void my_mkdir (const char *dir) { }
void my_rmdir (const char *dir) { }
#else
#include <sys/stat.h> /* For mkdir + permission bits. */
#include <unistd.h> /* For rmdir. */
#include <errno.h> /* For errno. */
#include <stdio.h> /* For perror. */
#include <stdlib.h> /* For abort. */
int expect_open_to_fail () { return 0; }
void
my_verify_not_exists (const char *dir)
{
struct stat path_stat;
int err = stat (dir, &path_stat);
if (err && errno == ENOENT)
return; /* OK */
if (err)
perror ("my_verify_not_exists");
else
printf ("my_verify_not_exists: pathname %s still exists\n", dir);
abort ();
}
void
my_mkdir (const char *dir)
{
int err;
struct stat path_stat;
/* Check whether 'dir' exists and is a directory. */
err = stat (dir, &path_stat);
if (err && errno != ENOENT)
{
perror ("my_mkdir: failed to call stat for directory");
abort ();
}
if (err == 0 && !S_ISDIR (path_stat.st_mode))
{
printf ("my_mkdir: pathname %s is not a directory\n", dir);
abort ();
}
err = mkdir (dir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
if (err != 0)
{
perror ("my_mkdir: failed to create directory");
abort ();
}
}
void
my_rmdir (const char *dir)
{
rmdir (dir);
}
#endif /* !defined(__WIN32__) || defined(__CYGWIN__) */
|