summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-fork.c')
-rw-r--r--deps/uv/test/test-fork.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/uv/test/test-fork.c b/deps/uv/test/test-fork.c
index ba85b53106..924c65b214 100644
--- a/deps/uv/test/test-fork.c
+++ b/deps/uv/test/test-fork.c
@@ -533,10 +533,12 @@ TEST_IMPL(fork_fs_events_file_parent_child) {
#if defined(NO_FS_EVENTS)
RETURN_SKIP(NO_FS_EVENTS);
#endif
-#if defined(__sun) || defined(_AIX)
+#if defined(__sun) || defined(_AIX) || defined(__MVS__)
/* It's not possible to implement this without additional
* bookkeeping on SunOS. For AIX it is possible, but has to be
* written. See https://github.com/libuv/libuv/pull/846#issuecomment-287170420
+ * TODO: On z/OS, we need to open another message queue and subscribe to the
+ * same events as the parent.
*/
return 0;
#else