summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-ipc.c
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-04-12 00:59:38 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2012-04-12 00:59:38 +0200
commite9dcfd4bd280fe3e819b2c992f33dad22bb8a967 (patch)
tree2b4748be10afd1640a271b0e7b382784d5feae5f /deps/uv/test/test-ipc.c
parent3ec84a11f8ce70bde3a480a80cbe0875f8ea08ae (diff)
downloadandroid-node-v8-e9dcfd4bd280fe3e819b2c992f33dad22bb8a967.tar.gz
android-node-v8-e9dcfd4bd280fe3e819b2c992f33dad22bb8a967.tar.bz2
android-node-v8-e9dcfd4bd280fe3e819b2c992f33dad22bb8a967.zip
Revert "deps: upgrade libuv to 3c41597"
This reverts commit 0db4dc0024eaa538bf4913d6bf256a18126de2ba. This commit makes a lot of tests fail due to reference counting errors. It's not worth it to debug because the reference counting scheme is due to change soon anyway.
Diffstat (limited to 'deps/uv/test/test-ipc.c')
-rw-r--r--deps/uv/test/test-ipc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/deps/uv/test/test-ipc.c b/deps/uv/test/test-ipc.c
index 1ea0e7f963..d70d5b23a3 100644
--- a/deps/uv/test/test-ipc.c
+++ b/deps/uv/test/test-ipc.c
@@ -535,7 +535,6 @@ int ipc_helper(int listen_after_write) {
ASSERT(uv_is_readable((uv_stream_t*) &channel));
ASSERT(uv_is_writable((uv_stream_t*) &channel));
- ASSERT(!uv_is_closing((uv_handle_t*) &channel));
r = uv_tcp_init(uv_default_loop(), &tcp_server);
ASSERT(r == 0);
@@ -584,7 +583,6 @@ int ipc_helper_tcp_connection() {
ASSERT(uv_is_readable((uv_stream_t*)&channel));
ASSERT(uv_is_writable((uv_stream_t*)&channel));
- ASSERT(!uv_is_closing((uv_handle_t*)&channel));
r = uv_tcp_init(uv_default_loop(), &tcp_server);
ASSERT(r == 0);