summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/select_poll_fd.py
Commit message (Collapse)AuthorAge
* tools/ci.sh: Set `ulimit -n` for unix CI.Jim Mussared2023-12-21
| | | | Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* extmod/modselect: Handle growing the pollfds allocation correctly.Jim Mussared2023-12-21
| | | | | | | | | | | | | | The poll_obj_t instances have their pollfd field point into this allocation. So if re-allocating results in a move, we need to update the existing poll_obj_t's. Update the test to cover this case. Fixes issue #12887. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* tests/extmod: Add coverage tests for select module.Damien George2023-08-07
Signed-off-by: Damien George <damien@micropython.org>