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

72 lines
2.3 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.
*/
TEST_DECLARE (ping_pong)
TEST_DECLARE (delayed_accept)
2011-04-22 05:12:10 +02:00
TEST_DECLARE (tcp_writealot)
2011-04-26 01:59:37 +02:00
TEST_DECLARE (bind_error_addrinuse)
TEST_DECLARE (bind_error_addrnotavail_1)
TEST_DECLARE (bind_error_addrnotavail_2)
2011-05-04 00:27:24 +02:00
TEST_DECLARE (bind_error_fault)
2011-04-26 03:48:08 +02:00
TEST_DECLARE (bind_error_inval)
TEST_DECLARE (connection_fail)
TEST_DECLARE (callback_stack)
TEST_DECLARE (timeout)
TEST_DECLARE (loop_handles)
TEST_DECLARE (fail_always)
TEST_DECLARE (pass_always)
HELPER_DECLARE (echo_server)
2011-04-05 01:43:17 +02:00
2011-04-19 04:26:32 +02:00
TASK_LIST_START
2011-04-05 01:43:17 +02:00
TEST_ENTRY (ping_pong)
TEST_HELPER (ping_pong, echo_server)
TEST_ENTRY (delayed_accept)
2011-04-22 05:12:10 +02:00
TEST_ENTRY (tcp_writealot)
TEST_HELPER (tcp_writealot, echo_server)
2011-04-26 01:59:37 +02:00
TEST_ENTRY (bind_error_addrinuse)
TEST_ENTRY (bind_error_addrnotavail_1)
TEST_ENTRY (bind_error_addrnotavail_2)
2011-04-26 03:48:08 +02:00
2011-05-04 00:27:24 +02:00
TEST_ENTRY (bind_error_fault)
2011-04-26 03:48:08 +02:00
TEST_ENTRY (bind_error_inval)
TEST_ENTRY (connection_fail)
TEST_ENTRY (callback_stack)
TEST_HELPER (callback_stack, echo_server)
2011-04-15 19:32:28 +02:00
TEST_ENTRY (timeout)
TEST_ENTRY (loop_handles)
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