summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-11-09 17:36:09 +1100
committerDamien George <damien@micropython.org>2023-12-21 11:05:31 +1100
commit74fd7b3d32e19a0c15ec1202cf03c31aa353a9f7 (patch)
tree722c98c9d6859156666c67ddf8dd630dc90ed821
parent8b24aa36ba978eafc6114b6798b47b7bfecdca26 (diff)
tools/ci.sh: Set `ulimit -n` for unix CI.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
-rw-r--r--tests/extmod/select_poll_fd.py3
-rwxr-xr-xtools/ci.sh3
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/extmod/select_poll_fd.py b/tests/extmod/select_poll_fd.py
index 3677ab571..3f7b5aa73 100644
--- a/tests/extmod/select_poll_fd.py
+++ b/tests/extmod/select_poll_fd.py
@@ -35,7 +35,8 @@ poller.register(1, select.POLLIN)
print(poller.poll(0))
# Test registering a very large number of file descriptors (will trigger
-# EINVAL due to more than OPEN_MAX fds).
+# EINVAL due to more than OPEN_MAX fds). Typically it's 1024 (and on GitHub CI
+# we force this via `ulimit -n 1024`).
poller = select.poll()
for fd in range(6000):
poller.register(fd)
diff --git a/tools/ci.sh b/tools/ci.sh
index d3ae41158..95b1f19ff 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -6,6 +6,9 @@ else
MAKEOPTS="-j$(sysctl -n hw.ncpu)"
fi
+# Ensure known OPEN_MAX (NO_FILES) limit.
+ulimit -n 1024
+
########################################################################################
# general helper functions