From 5c1c046dba8ebd23d102fa3cc9d1e93e2d410f46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 9 Dec 2014 09:01:08 +0100 Subject: [PATCH] test: raise fd limit for OSX select test Fixes #42 PR-URL: https://github.com/libuv/libuv/pull/46 Reviewed-By: Ben Noordhuis --- test/test-osx-select.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-osx-select.c b/test/test-osx-select.c index 68e5a841..49b1bb82 100644 --- a/test/test-osx-select.c +++ b/test/test-osx-select.c @@ -90,6 +90,8 @@ TEST_IMPL(osx_select_many_fds) { uv_tty_t tty; uv_tcp_t tcps[1500]; + TEST_FILE_LIMIT(ARRAY_SIZE(tcps) + 2); + r = uv_ip4_addr("127.0.0.1", 0, &addr); ASSERT(r == 0);