reactphp / socket

Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP.
https://reactphp.org/socket/
MIT License
1.2k stars 156 forks source link

Improve test suite to skip FD test when hitting memory limit #278

Closed clue closed 2 years ago

clue commented 2 years ago

This changeset improves the test suite to skip the FD test when hitting the memory limit. This is particularly useful when testing systems with a low memory limit in place and Docker which defaults to a very large number of FDs, thus potentially requiring a lot of memory.

The changes have been ported from https://github.com/reactphp/child-process/pull/90 Builds on top of #236 Refs #277 and others