diff options
Diffstat (limited to 'test/test-tcp-bind6-error.c')
-rw-r--r-- | test/test-tcp-bind6-error.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test-tcp-bind6-error.c b/test/test-tcp-bind6-error.c index f281b94e..f9f099e1 100644 --- a/test/test-tcp-bind6-error.c +++ b/test/test-tcp-bind6-error.c @@ -59,7 +59,7 @@ TEST_IMPL(tcp_bind6_error_addrinuse) { uv_close((uv_handle_t*)&server1, close_cb); uv_close((uv_handle_t*)&server2, close_cb); - uv_run(uv_default_loop()); + uv_run(uv_default_loop(), UV_RUN_DEFAULT); ASSERT(close_cb_called == 2); @@ -81,7 +81,7 @@ TEST_IMPL(tcp_bind6_error_addrnotavail) { uv_close((uv_handle_t*)&server, close_cb); - uv_run(uv_default_loop()); + uv_run(uv_default_loop(), UV_RUN_DEFAULT); ASSERT(close_cb_called == 1); @@ -107,7 +107,7 @@ TEST_IMPL(tcp_bind6_error_fault) { uv_close((uv_handle_t*)&server, close_cb); - uv_run(uv_default_loop()); + uv_run(uv_default_loop(), UV_RUN_DEFAULT); ASSERT(close_cb_called == 1); @@ -134,7 +134,7 @@ TEST_IMPL(tcp_bind6_error_inval) { uv_close((uv_handle_t*)&server, close_cb); - uv_run(uv_default_loop()); + uv_run(uv_default_loop(), UV_RUN_DEFAULT); ASSERT(close_cb_called == 1); |