forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_remove.cpp
More file actions
63 lines (50 loc) · 1.15 KB
/
test_remove.cpp
File metadata and controls
63 lines (50 loc) · 1.15 KB
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
#include <assert.h>
#include <errno.h>
#include <cstdio>
#include <iostream>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
void create_file(const char *path, const char *buffer, int mode) {
int fd = open(path, O_WRONLY | O_CREAT | O_EXCL, mode);
assert(fd >= 0);
int err = write(fd, buffer, sizeof(char) * strlen(buffer));
assert(err == (sizeof(char) * strlen(buffer)));
close(fd);
}
void setup() {
create_file("file", "abcdef", 0777);
mkdir("dir", 0777);
create_file("dir/file", "abcdef", 0777);
mkdir("dir/subdir", 0777);
}
void cleanup() {
// make sure we get it all regardless of anything failing
unlink("file");
unlink("dir/file");
rmdir("dir/subdir");
rmdir("dir");
}
void test() {
int err;
err = std::remove("dir/file");
assert(!err);
err = std::remove("file");
assert(!err);
// should fail, folder is not empty
err = std::remove("dir");
assert(err);
err = std::remove("dir/subdir");
assert(!err);
err = std::remove("dir");
assert(!err);
std::cout << "success";
}
int main() {
atexit(cleanup);
setup();
test();
return EXIT_SUCCESS;
}