示例#1
0
文件: test67.c 项目: jkiiski/minix
int
main(int argc, char *argv[])
{
	start(67);
	copy_subtests();
	test_open_file_fork();
	test_open_file_cloexec();
	test_open_socket_fork();
	test_open_socket_cloexec();
	quit();
	return(-1);	/* Unreachable */
}
示例#2
0
文件: test68.c 项目: AjeyBohare/minix
int
main(int argc, char *argv[])
{
	start(68);
	copy_subtests();
	test_pipe_flag_setting();
	test_pipe_normal();
	test_pipe_cloexec();
	test_pipe_nonblock();
	test_pipe_nosigpipe();
	quit();
	return(-1);	/* Unreachable */
}