From 85a293430f6eec5851a47b06943a31e925bda103 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 11 Jan 2015 23:45:27 +0100 Subject: [PATCH] test: enable test-tcp-try-write on windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR: https://github.com/libuv/libuv/pull/127 Reviewed-by: Saúl Ibarra Corretgé --- test/test-tcp-try-write.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/test-tcp-try-write.c b/test/test-tcp-try-write.c index baff6cf3..8a60136b 100644 --- a/test/test-tcp-try-write.c +++ b/test/test-tcp-try-write.c @@ -28,16 +28,6 @@ #define MAX_BYTES 1024 * 1024 -#ifdef _WIN32 - -TEST_IMPL(tcp_try_write) { - - MAKE_VALGRIND_HAPPY(); - return 0; -} - -#else /* !_WIN32 */ - static uv_tcp_t server; static uv_tcp_t client; static uv_tcp_t incoming; @@ -138,5 +128,3 @@ TEST_IMPL(tcp_try_write) { MAKE_VALGRIND_HAPPY(); return 0; } - -#endif /* !_WIN32 */