aboutsummaryrefslogtreecommitdiff
path: root/test/test-tcp-bind6-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-tcp-bind6-error.c')
-rw-r--r--test/test-tcp-bind6-error.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test-tcp-bind6-error.c b/test/test-tcp-bind6-error.c
index 86181b70..656ebe34 100644
--- a/test/test-tcp-bind6-error.c
+++ b/test/test-tcp-bind6-error.c
@@ -66,7 +66,7 @@ TEST_IMPL(tcp_bind6_error_addrinuse) {
ASSERT(close_cb_called == 2);
- MAKE_VALGRIND_HAPPY();
+ MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
}
@@ -92,7 +92,7 @@ TEST_IMPL(tcp_bind6_error_addrnotavail) {
ASSERT(close_cb_called == 1);
- MAKE_VALGRIND_HAPPY();
+ MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
}
@@ -120,7 +120,7 @@ TEST_IMPL(tcp_bind6_error_fault) {
ASSERT(close_cb_called == 1);
- MAKE_VALGRIND_HAPPY();
+ MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
}
@@ -151,7 +151,7 @@ TEST_IMPL(tcp_bind6_error_inval) {
ASSERT(close_cb_called == 1);
- MAKE_VALGRIND_HAPPY();
+ MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
}
@@ -171,6 +171,6 @@ TEST_IMPL(tcp_bind6_localhost_ok) {
r = uv_tcp_bind(&server, (const struct sockaddr*) &addr, 0);
ASSERT(r == 0);
- MAKE_VALGRIND_HAPPY();
+ MAKE_VALGRIND_HAPPY(uv_default_loop());
return 0;
}