summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-emfile.c
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <saghul@gmail.com>2016-05-17 00:25:23 +0200
committerSaúl Ibarra Corretgé <saghul@gmail.com>2016-05-17 02:28:48 +0200
commitb78a7043699093c46d5d71992184f4c40ab5c4b5 (patch)
tree7ee0fc8474ae60c4be545965ae18882ef1964027 /deps/uv/test/test-emfile.c
parentf293d0b0c85b2d1b9e0d3938dd38cf1cacac6970 (diff)
downloadandroid-node-v8-b78a7043699093c46d5d71992184f4c40ab5c4b5.tar.gz
android-node-v8-b78a7043699093c46d5d71992184f4c40ab5c4b5.tar.bz2
android-node-v8-b78a7043699093c46d5d71992184f4c40ab5c4b5.zip
deps: upgrade libuv to 1.9.1
Fixes: https://github.com/nodejs/node/issues/4002 Fixes: https://github.com/nodejs/node/issues/5384 Fixes: https://github.com/nodejs/node/issues/6563 Refs: https://github.com/nodejs/node/issues/2680#issuecomment-213521708 PR-URL: https://github.com/nodejs/node/pull/6796 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/uv/test/test-emfile.c')
-rw-r--r--deps/uv/test/test-emfile.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/uv/test/test-emfile.c b/deps/uv/test/test-emfile.c
index dd35f785b4..5f4dd9efdf 100644
--- a/deps/uv/test/test-emfile.c
+++ b/deps/uv/test/test-emfile.c
@@ -38,6 +38,13 @@ static uv_tcp_t client_handle;
TEST_IMPL(emfile) {
+#ifdef _AIX
+ /* On AIX, if a 'accept' call fails ECONNRESET is set on the socket
+ * which causes uv__emfile_trick to not work as intended and this test
+ * to fail.
+ */
+ RETURN_SKIP("uv__emfile_trick does not work on AIX");
+#endif
struct sockaddr_in addr;
struct rlimit limits;
uv_connect_t connect_req;