blob: ea8a8272ad1a0ddfc2da95f6d703401bd3e4579d (
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
|
// TODO test it working too...
#include "../tests.h"
#include <camellia/flags.h>
#include <camellia/syscalls.h>
static void test_unfinished_req(void) {
handle_t h = -1;
int ret = _syscall_fork(FORK_NEWFS, &h);
test(0 <= ret);
if (ret == 0) {
// TODO make a similar test with all 0s passed to fs_wait
struct ufs_request res;
_syscall_fs_wait(NULL, 0, &res);
// TODO second fs_wait
exit(0);
} else {
test(0 <= h);
test(_syscall_mount(h, "/", 1) == 0);
int ret = _syscall_open("/", 1, 0);
test(ret < 0);
// the handler quits while handling that call - but this syscall should return anyways
}
}
static void test_orphaned_fs(void) {
handle_t h = -1;
int ret = _syscall_fork(FORK_NEWFS, &h);
test(0 <= ret);
if (ret == 0) {
exit(0);
} else {
test(0 <= h);
test(_syscall_mount(h, "/", 1) == 0);
int ret = _syscall_open("/", 1, 0);
test(ret < 0);
}
}
void r_k_fs(void) {
run_test(test_unfinished_req);
run_test(test_orphaned_fs);
}
|