search for: test_mode_server

Displaying 5 results from an estimated 5 matches for "test_mode_server".

2019 Aug 01
13
[PATCH v2 00/11] VSOCK: add vsock_test test suite
The vsock_diag.ko module already has a test suite but the core AF_VSOCK functionality has no tests. This patch series adds several test cases that exercise AF_VSOCK SOCK_STREAM socket semantics (send/recv, connect/accept, half-closed connections, simultaneous connections). Stefan: Do you think we should have a single application or is better to split it in single tests (e.g.
2019 Dec 18
13
[PATCH net-next v3 00/11] VSOCK: add vsock_test test suite
The vsock_diag.ko module already has a test suite but the core AF_VSOCK functionality has no tests. This patch series adds several test cases that exercise AF_VSOCK SOCK_STREAM socket semantics (send/recv, connect/accept, half-closed connections, simultaneous connections). The v1 of this series was originally sent by Stefan. v3: - Patch 6: * check the byte received in the recv_byte() * use
2019 Aug 01
0
[PATCH v2 07/11] VSOCK: add AF_VSOCK test cases
...gopts, NULL); + + if (opt == -1) + break; + + switch (opt) { + case 'H': + control_host = optarg; + break; + case 'm': + if (strcmp(optarg, "client") == 0) + opts.mode = TEST_MODE_CLIENT; + else if (strcmp(optarg, "server") == 0) + opts.mode = TEST_MODE_SERVER; + else { + fprintf(stderr, "--mode must be \"client\" or \"server\"\n"); + return EXIT_FAILURE; + } + break; + case 'p': + opts.peer_cid = parse_cid(optarg); + break; + case 'P': + control_port = optarg; + break; + case '?...
2019 Oct 09
2
[PATCH v2 07/11] VSOCK: add AF_VSOCK test cases
...case 'm': > + if (strcmp(optarg, "client") == 0) > + opts.mode = TEST_MODE_CLIENT; > + else if (strcmp(optarg, "server") == 0) > + opts.mode = TEST_MODE_SERVER; > + else { > + fprintf(stderr, "--mode must be \"client\" or \"server\"\n"); > + return EXIT_FAILURE; > + } > + break; > +...
2019 Oct 09
2
[PATCH v2 07/11] VSOCK: add AF_VSOCK test cases
...case 'm': > + if (strcmp(optarg, "client") == 0) > + opts.mode = TEST_MODE_CLIENT; > + else if (strcmp(optarg, "server") == 0) > + opts.mode = TEST_MODE_SERVER; > + else { > + fprintf(stderr, "--mode must be \"client\" or \"server\"\n"); > + return EXIT_FAILURE; > + } > + break; > +...