1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/test/test-list.h

288 lines
8.7 KiB
C
Raw Normal View History

/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
2011-09-15 15:16:53 -07:00
TEST_DECLARE (tty)
TEST_DECLARE (stdio_over_pipes)
TEST_DECLARE (ipc_listen_before_write)
TEST_DECLARE (ipc_listen_after_write)
2011-07-01 17:54:17 -07:00
TEST_DECLARE (tcp_ping_pong)
TEST_DECLARE (tcp_ping_pong_v6)
2011-09-26 22:51:08 -07:00
TEST_DECLARE (tcp_ref)
TEST_DECLARE (tcp_ref2)
2011-07-01 17:54:17 -07:00
TEST_DECLARE (pipe_ping_pong)
TEST_DECLARE (delayed_accept)
TEST_DECLARE (multiple_listen)
2011-04-22 05:12:10 +02:00
TEST_DECLARE (tcp_writealot)
2011-07-21 02:00:12 +02:00
TEST_DECLARE (tcp_bind_error_addrinuse)
TEST_DECLARE (tcp_bind_error_addrnotavail_1)
TEST_DECLARE (tcp_bind_error_addrnotavail_2)
TEST_DECLARE (tcp_bind_error_fault)
TEST_DECLARE (tcp_bind_error_inval)
TEST_DECLARE (tcp_bind_localhost_ok)
TEST_DECLARE (tcp_listen_without_bind)
TEST_DECLARE (tcp_close)
TEST_DECLARE (tcp_flags)
TEST_DECLARE (tcp_write_error)
TEST_DECLARE (tcp_write_to_half_open_connection)
2011-07-21 02:00:12 +02:00
TEST_DECLARE (tcp_bind6_error_addrinuse)
TEST_DECLARE (tcp_bind6_error_addrnotavail)
TEST_DECLARE (tcp_bind6_error_fault)
TEST_DECLARE (tcp_bind6_error_inval)
TEST_DECLARE (tcp_bind6_localhost_ok)
2011-08-19 23:22:30 +02:00
TEST_DECLARE (udp_send_and_recv)
TEST_DECLARE (udp_multicast_join)
2011-08-19 23:22:30 +02:00
TEST_DECLARE (udp_dgram_too_big)
TEST_DECLARE (udp_dual_stack)
TEST_DECLARE (udp_ipv6_only)
2011-07-21 02:00:12 +02:00
TEST_DECLARE (pipe_bind_error_addrinuse)
TEST_DECLARE (pipe_bind_error_addrnotavail)
TEST_DECLARE (pipe_bind_error_inval)
TEST_DECLARE (pipe_listen_without_bind)
TEST_DECLARE (pipe_connect_bad_name)
TEST_DECLARE (connection_fail)
TEST_DECLARE (connection_fail_doesnt_auto_close)
TEST_DECLARE (shutdown_eof)
TEST_DECLARE (callback_stack)
TEST_DECLARE (error_message)
TEST_DECLARE (timer)
2011-09-26 22:01:21 -07:00
TEST_DECLARE (timer_ref)
TEST_DECLARE (timer_ref2)
TEST_DECLARE (timer_again)
TEST_DECLARE (idle_starvation)
TEST_DECLARE (loop_handles)
TEST_DECLARE (ref)
TEST_DECLARE (idle_ref)
TEST_DECLARE (get_loadavg)
TEST_DECLARE (async_ref)
TEST_DECLARE (prepare_ref)
TEST_DECLARE (check_ref)
TEST_DECLARE (unref_in_prepare_cb)
2011-05-09 04:29:22 +02:00
TEST_DECLARE (async)
TEST_DECLARE (get_currentexe)
TEST_DECLARE (get_memory)
2011-06-17 11:47:35 +02:00
TEST_DECLARE (hrtime)
2011-06-25 15:33:52 +02:00
TEST_DECLARE (getaddrinfo_basic)
TEST_DECLARE (getaddrinfo_concurrent)
2011-06-20 09:41:57 -07:00
TEST_DECLARE (gethostbyname)
2011-08-25 02:30:10 +02:00
TEST_DECLARE (getsockname_tcp)
TEST_DECLARE (getsockname_udp)
TEST_DECLARE (fail_always)
TEST_DECLARE (pass_always)
TEST_DECLARE (spawn_exit_code)
2011-07-25 17:11:23 -07:00
TEST_DECLARE (spawn_stdout)
2011-07-29 18:30:07 -07:00
TEST_DECLARE (spawn_stdin)
TEST_DECLARE (spawn_and_kill)
TEST_DECLARE (spawn_and_ping)
2011-11-02 14:05:22 -07:00
TEST_DECLARE (kill)
2011-09-06 00:16:41 +02:00
TEST_DECLARE (fs_file_noent)
2011-08-19 16:46:42 -07:00
TEST_DECLARE (fs_file_async)
TEST_DECLARE (fs_file_sync)
TEST_DECLARE (fs_async_dir)
TEST_DECLARE (fs_async_sendfile)
TEST_DECLARE (fs_fstat)
TEST_DECLARE (fs_chmod)
TEST_DECLARE (fs_chown)
2011-09-03 16:31:35 -07:00
TEST_DECLARE (fs_link)
TEST_DECLARE (fs_symlink)
TEST_DECLARE (fs_utime)
TEST_DECLARE (fs_futime)
2011-11-04 12:41:23 -07:00
TEST_DECLARE (fs_file_open_append)
TEST_DECLARE (fs_stat_missing_path)
2011-09-16 12:04:36 -07:00
TEST_DECLARE (fs_event_watch_dir)
TEST_DECLARE (fs_event_watch_file)
TEST_DECLARE (fs_event_watch_file_current_dir)
TEST_DECLARE (fs_event_no_callback_on_close)
TEST_DECLARE (fs_event_immediate_close)
TEST_DECLARE (fs_readdir_empty_dir)
TEST_DECLARE (fs_readdir_file)
TEST_DECLARE (fs_open_dir)
2011-08-19 16:46:42 -07:00
TEST_DECLARE (threadpool_queue_work_simple)
TEST_DECLARE (thread_mutex)
TEST_DECLARE (thread_rwlock)
2011-11-21 16:12:36 +01:00
TEST_DECLARE (thread_create)
TEST_DECLARE (strlcpy)
TEST_DECLARE (strlcat)
#ifdef _WIN32
TEST_DECLARE (spawn_detect_pipe_name_collisions_on_windows)
TEST_DECLARE (argument_escaping)
TEST_DECLARE (environment_creation)
TEST_DECLARE (listen_with_simultaneous_accepts)
TEST_DECLARE (listen_no_simultaneous_accepts)
#endif
2011-07-01 17:54:17 -07:00
HELPER_DECLARE (tcp4_echo_server)
HELPER_DECLARE (tcp6_echo_server)
HELPER_DECLARE (pipe_echo_server)
2011-04-05 01:43:17 +02:00
2011-06-25 12:35:49 +02:00
2011-04-19 04:26:32 +02:00
TASK_LIST_START
TEST_ENTRY (pipe_connect_bad_name)
2011-09-15 15:16:53 -07:00
TEST_ENTRY (tty)
TEST_ENTRY (stdio_over_pipes)
TEST_ENTRY (ipc_listen_before_write)
TEST_ENTRY (ipc_listen_after_write)
2011-09-26 22:51:08 -07:00
TEST_ENTRY (tcp_ref)
TEST_ENTRY (tcp_ref2)
TEST_HELPER (tcp_ref2, tcp4_echo_server)
2011-07-01 17:54:17 -07:00
TEST_ENTRY (tcp_ping_pong)
TEST_HELPER (tcp_ping_pong, tcp4_echo_server)
2011-04-05 01:43:17 +02:00
2011-07-01 17:54:17 -07:00
TEST_ENTRY (tcp_ping_pong_v6)
TEST_HELPER (tcp_ping_pong_v6, tcp6_echo_server)
TEST_ENTRY (pipe_ping_pong)
TEST_HELPER (pipe_ping_pong, pipe_echo_server)
2011-07-01 17:04:05 -07:00
TEST_ENTRY (delayed_accept)
TEST_ENTRY (multiple_listen)
2011-04-22 05:12:10 +02:00
TEST_ENTRY (tcp_writealot)
2011-07-01 17:54:17 -07:00
TEST_HELPER (tcp_writealot, tcp4_echo_server)
2011-04-22 05:12:10 +02:00
2011-07-21 02:00:12 +02:00
TEST_ENTRY (tcp_bind_error_addrinuse)
TEST_ENTRY (tcp_bind_error_addrnotavail_1)
TEST_ENTRY (tcp_bind_error_addrnotavail_2)
TEST_ENTRY (tcp_bind_error_fault)
TEST_ENTRY (tcp_bind_error_inval)
TEST_ENTRY (tcp_bind_localhost_ok)
TEST_ENTRY (tcp_listen_without_bind)
TEST_ENTRY (tcp_close)
TEST_ENTRY (tcp_flags)
TEST_ENTRY (tcp_write_error)
TEST_ENTRY (tcp_write_to_half_open_connection)
2011-07-21 02:00:12 +02:00
TEST_ENTRY (tcp_bind6_error_addrinuse)
TEST_ENTRY (tcp_bind6_error_addrnotavail)
TEST_ENTRY (tcp_bind6_error_fault)
TEST_ENTRY (tcp_bind6_error_inval)
TEST_ENTRY (tcp_bind6_localhost_ok)
2011-08-19 23:22:30 +02:00
TEST_ENTRY (udp_send_and_recv)
TEST_ENTRY (udp_dgram_too_big)
TEST_ENTRY (udp_dual_stack)
TEST_ENTRY (udp_ipv6_only)
TEST_ENTRY (udp_multicast_join)
2011-08-19 23:22:30 +02:00
2011-07-21 02:00:12 +02:00
TEST_ENTRY (pipe_bind_error_addrinuse)
TEST_ENTRY (pipe_bind_error_addrnotavail)
TEST_ENTRY (pipe_bind_error_inval)
TEST_ENTRY (pipe_listen_without_bind)
2011-06-26 22:34:04 -06:00
TEST_ENTRY (connection_fail)
TEST_ENTRY (connection_fail_doesnt_auto_close)
TEST_ENTRY (shutdown_eof)
2011-07-01 17:54:17 -07:00
TEST_HELPER (shutdown_eof, tcp4_echo_server)
TEST_ENTRY (callback_stack)
2011-07-01 17:54:17 -07:00
TEST_HELPER (callback_stack, tcp4_echo_server)
TEST_ENTRY (error_message)
TEST_ENTRY (timer)
2011-09-26 22:01:21 -07:00
TEST_ENTRY (timer_ref)
TEST_ENTRY (timer_ref2)
2011-04-15 19:32:28 +02:00
TEST_ENTRY (timer_again)
TEST_ENTRY (idle_starvation)
TEST_ENTRY (ref)
TEST_ENTRY (idle_ref)
TEST_ENTRY (async_ref)
TEST_ENTRY (prepare_ref)
TEST_ENTRY (check_ref)
TEST_ENTRY (unref_in_prepare_cb)
TEST_ENTRY (loop_handles)
2011-05-09 04:29:22 +02:00
TEST_ENTRY (async)
TEST_ENTRY (get_currentexe)
TEST_ENTRY (get_memory)
TEST_ENTRY (get_loadavg)
2011-06-17 11:47:35 +02:00
TEST_ENTRY (hrtime)
2011-06-25 15:33:52 +02:00
TEST_ENTRY (getaddrinfo_basic)
TEST_ENTRY (getaddrinfo_concurrent)
2011-06-17 11:47:35 +02:00
2011-06-20 09:41:57 -07:00
TEST_ENTRY (gethostbyname)
2011-07-01 17:54:17 -07:00
TEST_HELPER (gethostbyname, tcp4_echo_server)
2011-06-20 09:41:57 -07:00
2011-08-25 02:30:10 +02:00
TEST_ENTRY (getsockname_tcp)
TEST_ENTRY (getsockname_udp)
2011-07-11 13:45:16 -07:00
TEST_ENTRY (spawn_exit_code)
2011-07-25 17:11:23 -07:00
TEST_ENTRY (spawn_stdout)
2011-07-29 18:30:07 -07:00
TEST_ENTRY (spawn_stdin)
TEST_ENTRY (spawn_and_kill)
TEST_ENTRY (spawn_and_ping)
2011-11-02 14:05:22 -07:00
TEST_ENTRY (kill)
#ifdef _WIN32
TEST_ENTRY (spawn_detect_pipe_name_collisions_on_windows)
TEST_ENTRY (argument_escaping)
TEST_ENTRY (environment_creation)
TEST_ENTRY (listen_with_simultaneous_accepts)
TEST_ENTRY (listen_no_simultaneous_accepts)
#endif
2011-09-06 00:16:41 +02:00
TEST_ENTRY (fs_file_noent)
2011-08-19 16:46:42 -07:00
TEST_ENTRY (fs_file_async)
TEST_ENTRY (fs_file_sync)
TEST_ENTRY (fs_async_dir)
TEST_ENTRY (fs_async_sendfile)
TEST_ENTRY (fs_fstat)
TEST_ENTRY (fs_chmod)
TEST_ENTRY (fs_chown)
TEST_ENTRY (fs_utime)
TEST_ENTRY (fs_futime)
TEST_ENTRY (fs_symlink)
TEST_ENTRY (fs_stat_missing_path)
2011-11-04 12:41:23 -07:00
TEST_ENTRY (fs_file_open_append)
2011-09-16 12:04:36 -07:00
TEST_ENTRY (fs_event_watch_dir)
TEST_ENTRY (fs_event_watch_file)
TEST_ENTRY (fs_event_watch_file_current_dir)
TEST_ENTRY (fs_event_no_callback_on_close)
TEST_ENTRY (fs_event_immediate_close)
TEST_ENTRY (fs_readdir_empty_dir)
TEST_ENTRY (fs_readdir_file)
TEST_ENTRY (fs_open_dir)
2011-08-19 16:46:42 -07:00
TEST_ENTRY (threadpool_queue_work_simple)
TEST_ENTRY (thread_mutex)
TEST_ENTRY (thread_rwlock)
2011-11-21 16:12:36 +01:00
TEST_ENTRY (thread_create)
TEST_ENTRY (strlcpy)
TEST_ENTRY (strlcat)
2011-08-19 16:46:42 -07:00
2011-05-03 16:56:26 -07:00
#if 0
/* These are for testing the test runner. */
2011-04-05 01:43:17 +02:00
TEST_ENTRY (fail_always)
TEST_ENTRY (pass_always)
2011-05-03 16:56:26 -07:00
#endif
2011-04-19 04:26:32 +02:00
TASK_LIST_END