-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_cowbuilder.c
More file actions
executable file
·45 lines (40 loc) · 1.02 KB
/
test_cowbuilder.c
File metadata and controls
executable file
·45 lines (40 loc) · 1.02 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
/*BINFMTC: cowbuilder.c parameter.c forkexec.c ilistcreate.c cowbuilder_util.c
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "file.h"
#include "parameter.h"
// utility to check hardlink count of file.
static int check_hardlink_count(const char* filename)
{
struct stat buf;
stat(filename, &buf);
return buf.st_nlink;
}
int break_cowlink(const char* s);
void test_break_cowlink()
{
char *temp = strdupa("/tmp/cowtestXXXXXX");
char *temp2 = strdupa("/tmp/cowtestXXXXXX");
close(mkstemp(temp));
close(mkstemp(temp2));
assert(check_hardlink_count(temp2) == 1);
assert(check_hardlink_count(temp) == 1);
assert(-1!=unlink(temp2));
assert(-1!=link(temp, temp2));
assert(check_hardlink_count(temp2) == 2);
assert(check_hardlink_count(temp) == 2);
break_cowlink(temp2);
assert(check_hardlink_count(temp2) == 1);
assert(check_hardlink_count(temp) == 1);
}
int main()
{
test_break_cowlink();
return 0;
}