aboutsummaryrefslogtreecommitdiff
path: root/src/tests/utests/chan1/test.c
blob: 1b89255d0a3a135b3fb1a0aa0aed22a2f40ab90a (plain) (blame)
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
#include <string.h>

#include <malloc.h>

#include <syscall.h>
#include <debug.h>

int main(int argc, char **argv) {

	fd_pair_t ch = make_channel(false);

	char* s = "Hello, world!";
	ASSERT(write(ch.a, 0, strlen(s), s) == strlen(s));
	char buf[128];
	ASSERT(read(ch.b, 0, 128, buf) == strlen(s));
	ASSERT(strncmp(s, buf, strlen(s)) == 0);

	close(ch.a);
	sel_fd_t sel = { .fd = ch.b, .req_flags = SEL_ERROR };
	ASSERT(select(&sel, 1, 0));
	ASSERT(sel.got_flags & SEL_ERROR);
	
	close(ch.b);

	dbg_printf("(TEST-OK)\n");

	return 0;
}

/* vim: set ts=4 sw=4 tw=0 noet :*/