test: rename test tcp_dont_connect_after_write
Rename test tcp_dont_connect_after_write to tcp_connect_error_after_write, teensy tad more descriptive.
This commit is contained in:
parent
76fa163117
commit
d08070435d
@ -40,7 +40,7 @@ TEST_DECLARE (pipe_ping_pong)
|
||||
TEST_DECLARE (delayed_accept)
|
||||
TEST_DECLARE (multiple_listen)
|
||||
TEST_DECLARE (tcp_writealot)
|
||||
TEST_DECLARE (tcp_dont_connect_after_write)
|
||||
TEST_DECLARE (tcp_connect_error_after_write)
|
||||
TEST_DECLARE (tcp_bind_error_addrinuse)
|
||||
TEST_DECLARE (tcp_bind_error_addrnotavail_1)
|
||||
TEST_DECLARE (tcp_bind_error_addrnotavail_2)
|
||||
@ -229,7 +229,7 @@ TASK_LIST_START
|
||||
TEST_ENTRY (tcp_writealot)
|
||||
TEST_HELPER (tcp_writealot, tcp4_echo_server)
|
||||
|
||||
TEST_ENTRY (tcp_dont_connect_after_write)
|
||||
TEST_ENTRY (tcp_connect_error_after_write)
|
||||
TEST_ENTRY (tcp_bind_error_addrinuse)
|
||||
TEST_ENTRY (tcp_bind_error_addrnotavail_1)
|
||||
TEST_ENTRY (tcp_bind_error_addrnotavail_2)
|
||||
|
||||
@ -54,7 +54,7 @@ static void write_cb(uv_write_t* req, int status) {
|
||||
* (uv errno 12) and get connect_cb() called once with status != 0.
|
||||
* Related issue: https://github.com/joyent/libuv/issues/443
|
||||
*/
|
||||
TEST_IMPL(tcp_dont_connect_after_write) {
|
||||
TEST_IMPL(tcp_connect_error_after_write) {
|
||||
uv_connect_t connect_req;
|
||||
struct sockaddr_in addr;
|
||||
uv_write_t write_req;
|
||||
2
uv.gyp
2
uv.gyp
@ -341,7 +341,7 @@
|
||||
'test/test-tcp-bind-error.c',
|
||||
'test/test-tcp-bind6-error.c',
|
||||
'test/test-tcp-close.c',
|
||||
'test/test-tcp-dont-connect-after-write.c',
|
||||
'test/test-tcp-connect-error-after-write.c',
|
||||
'test/test-tcp-flags.c',
|
||||
'test/test-tcp-connect-error.c',
|
||||
'test/test-tcp-connect-timeout.c',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user