From 5a8f7931b72ed775936f265cee9c38aba74f05f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Sat, 13 Dec 2014 18:21:05 +0100 Subject: [PATCH] test: relax osx_select_many_fds 1502 is not enough, since there are other fds which are in use internally. PR-URL: https://github.com/libuv/libuv/pull/67 Reviewed-By: Ben Noordhuis --- test/test-osx-select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-osx-select.c b/test/test-osx-select.c index 49b1bb822..ef551eaf2 100644 --- a/test/test-osx-select.c +++ b/test/test-osx-select.c @@ -90,7 +90,7 @@ TEST_IMPL(osx_select_many_fds) { uv_tty_t tty; uv_tcp_t tcps[1500]; - TEST_FILE_LIMIT(ARRAY_SIZE(tcps) + 2); + TEST_FILE_LIMIT(ARRAY_SIZE(tcps) + 100); r = uv_ip4_addr("127.0.0.1", 0, &addr); ASSERT(r == 0);