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

Merge eeae108d4656a2e937524516d50dbe97fb1d0a1d into 16d6a0b49dcfc15dbcd555fbe6b52517c6206297

This commit is contained in:
Ben Noordhuis 2025-02-28 05:14:48 +00:00 committed by GitHub
commit fda75b46b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,11 +55,6 @@ static void write_cb(uv_write_t* req, int status) {
* Related issue: https://github.com/joyent/libuv/issues/443
*/
TEST_IMPL(tcp_connect_error_after_write) {
#ifdef _WIN32
RETURN_SKIP("This test is disabled on Windows for now. "
"See https://github.com/joyent/libuv/issues/444\n");
#else
uv_connect_t connect_req;
struct sockaddr_in addr;
uv_write_t write_req;
@ -74,7 +69,11 @@ TEST_IMPL(tcp_connect_error_after_write) {
ASSERT_OK(r);
r = uv_write(&write_req, (uv_stream_t*)&conn, &buf, 1, write_cb);
#ifdef _WIN32
ASSERT_EQ(r, UV_EPIPE);
#else
ASSERT_EQ(r, UV_EBADF);
#endif
r = uv_tcp_connect(&connect_req,
&conn,
@ -94,5 +93,4 @@ TEST_IMPL(tcp_connect_error_after_write) {
MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
#endif
}