(self)
| 308 | @requires_python_dev_packages |
| 309 | @requires_dev_dependency('ws') |
| 310 | def test_sockets_partial(self): |
| 311 | for harness in [ |
| 312 | WebsockifyServerHarness(test_file('sockets/test_sockets_partial_server.c'), [], 49180), |
| 313 | CompiledServerHarness(test_file('sockets/test_sockets_partial_server.c'), [], 49181), |
| 314 | ]: |
| 315 | with harness: |
| 316 | self.btest_exit('sockets/test_sockets_partial_client.c', assert_returncode=165, cflags=[f'-DSOCKK={harness.listen_port}']) |
| 317 | |
| 318 | @no_windows('This test is Unix-specific.') |
| 319 | @requires_python_dev_packages |
nothing calls this directly
no test coverage detected