aboutsummaryrefslogtreecommitdiff
path: root/deps/uv/test/test-list.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-list.h')
-rw-r--r--deps/uv/test/test-list.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/uv/test/test-list.h b/deps/uv/test/test-list.h
index 1bd062da3d..46db4b2710 100644
--- a/deps/uv/test/test-list.h
+++ b/deps/uv/test/test-list.h
@@ -346,6 +346,7 @@ TEST_DECLARE (fs_partial_read)
TEST_DECLARE (fs_partial_write)
TEST_DECLARE (fs_file_pos_after_op_with_offset)
TEST_DECLARE (fs_null_req)
+TEST_DECLARE (fs_read_dir)
#ifdef _WIN32
TEST_DECLARE (fs_exclusive_sharing_mode)
TEST_DECLARE (fs_open_readonly_acl)
@@ -441,6 +442,9 @@ TEST_DECLARE (fork_threadpool_queue_work_simple)
#endif
#endif
+TEST_DECLARE (idna_toascii)
+TEST_DECLARE (utf8_decode1)
+
TASK_LIST_START
TEST_ENTRY_CUSTOM (platform_output, 0, 1, 5000)
@@ -897,6 +901,7 @@ TASK_LIST_START
TEST_ENTRY (fs_read_write_null_arguments)
TEST_ENTRY (fs_file_pos_after_op_with_offset)
TEST_ENTRY (fs_null_req)
+ TEST_ENTRY (fs_read_dir)
#ifdef _WIN32
TEST_ENTRY (fs_exclusive_sharing_mode)
TEST_ENTRY (fs_open_readonly_acl)
@@ -944,6 +949,13 @@ TASK_LIST_START
#endif
#endif
+ TEST_ENTRY (utf8_decode1)
+
+/* Doesn't work on z/OS because that platform uses EBCDIC, not ASCII. */
+#ifndef __MVS__
+ TEST_ENTRY (idna_toascii)
+#endif
+
#if 0
/* These are for testing the test runner. */
TEST_ENTRY (fail_always)