forked from cory/tildefriends
libuv 1.45.0, #include cleanup, probably something else.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4308 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
6
deps/libuv/test/test-ip6-addr.c
vendored
6
deps/libuv/test/test-ip6-addr.c
vendored
@@ -103,7 +103,7 @@ TEST_IMPL(ip6_addr_link_local) {
|
||||
fflush(stderr);
|
||||
|
||||
ASSERT(0 == uv_ip6_addr(scoped_addr, TEST_PORT, &addr));
|
||||
fprintf(stderr, "Got scope_id 0x%02x\n", addr.sin6_scope_id);
|
||||
fprintf(stderr, "Got scope_id 0x%2x\n", (unsigned)addr.sin6_scope_id);
|
||||
fflush(stderr);
|
||||
ASSERT(iface_index == addr.sin6_scope_id);
|
||||
}
|
||||
@@ -113,7 +113,7 @@ TEST_IMPL(ip6_addr_link_local) {
|
||||
scoped_addr_len = sizeof(scoped_addr);
|
||||
ASSERT(0 != uv_if_indextoname((unsigned int)-1, scoped_addr, &scoped_addr_len));
|
||||
|
||||
MAKE_VALGRIND_HAPPY();
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -154,7 +154,7 @@ TEST_IMPL(ip6_pton) {
|
||||
GOOD_ADDR_LIST(TEST_GOOD)
|
||||
BAD_ADDR_LIST(TEST_BAD)
|
||||
|
||||
MAKE_VALGRIND_HAPPY();
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user