2011-04-18 11:10:18 -07:00
|
|
|
/* 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-04-19 14:51:10 +02:00
|
|
|
TEST_DECLARE (ping_pong)
|
2011-04-22 00:45:49 +02:00
|
|
|
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)
|
2011-05-04 00:25:48 +02:00
|
|
|
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)
|
2011-04-22 00:45:49 +02:00
|
|
|
TEST_DECLARE (connection_fail)
|
2011-04-19 14:51:10 +02:00
|
|
|
TEST_DECLARE (close_cb_stack)
|
|
|
|
TEST_DECLARE (timeout)
|
|
|
|
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)
|
|
|
|
|
2011-04-22 00:45:49 +02:00
|
|
|
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)
|
|
|
|
|
2011-05-04 00:25:48 +02:00
|
|
|
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)
|
|
|
|
|
2011-04-22 00:45:49 +02:00
|
|
|
TEST_ENTRY (connection_fail)
|
|
|
|
|
2011-04-05 04:24:03 +02:00
|
|
|
TEST_ENTRY (close_cb_stack)
|
|
|
|
|
2011-04-15 19:32:28 +02:00
|
|
|
TEST_ENTRY (timeout)
|
|
|
|
|
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
|