summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-emfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-emfile.c')
-rw-r--r--deps/uv/test/test-emfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/uv/test/test-emfile.c b/deps/uv/test/test-emfile.c
index 5f4dd9efdf..8e44ac5c77 100644
--- a/deps/uv/test/test-emfile.c
+++ b/deps/uv/test/test-emfile.c
@@ -38,12 +38,12 @@ static uv_tcp_t client_handle;
TEST_IMPL(emfile) {
-#ifdef _AIX
+#if defined(_AIX) || defined(__MVS__)
/* 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");
+ RETURN_SKIP("uv__emfile_trick does not work on this OS");
#endif
struct sockaddr_in addr;
struct rlimit limits;