Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
test: disable tcp_dont_connect_after_write on windows
Browse files Browse the repository at this point in the history
For now. See #444.
  • Loading branch information
bnoordhuis committed Jun 4, 2012
1 parent b96ed68 commit 97801c6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test-tcp-dont-connect-after-write.c
Expand Up @@ -62,6 +62,12 @@ TEST_IMPL(tcp_dont_connect_after_write) {
uv_buf_t buf;
int r;

#ifdef _WIN32
fprintf(stderr, "This test is disabled on Windows for now.\n");
fprintf(stderr, "See https://github.com/joyent/libuv/issues/444\n");
return 0; /* windows slackers... */
#endif

addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
buf = uv_buf_init("TEST", 4);

Expand Down

0 comments on commit 97801c6

Please sign in to comment.