1 /* SPDX-License-Identifier: GPL-2.0-only */
5 #include <sys/socket.h>
6 #include <linux/vm_sockets.h>
8 /* Tests can either run as the client or the server */
15 /* Test runner options */
18 unsigned int peer_cid
;
21 /* A test case definition. Test functions must print failures to stderr and
22 * terminate with exit(EXIT_FAILURE).
25 const char *name
; /* human-readable name */
27 /* Called when test mode is TEST_MODE_CLIENT */
28 void (*run_client
)(const struct test_opts
*opts
);
30 /* Called when test mode is TEST_MODE_SERVER */
31 void (*run_server
)(const struct test_opts
*opts
);
36 void init_signals(void);
37 unsigned int parse_cid(const char *str
);
38 int vsock_stream_connect(unsigned int cid
, unsigned int port
);
39 int vsock_stream_accept(unsigned int cid
, unsigned int port
,
40 struct sockaddr_vm
*clientaddrp
);
41 void vsock_wait_remote_close(int fd
);
42 void send_byte(int fd
, int expected_ret
, int flags
);
43 void recv_byte(int fd
, int expected_ret
, int flags
);
44 void run_tests(const struct test_case
*test_cases
,
45 const struct test_opts
*opts
);
46 void list_tests(const struct test_case
*test_cases
);
47 void skip_test(struct test_case
*test_cases
, size_t test_cases_len
,
48 const char *test_id_str
);