1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: Skip multicast test
Skip muliticast test to avoid this error on all build daemons:
.
ok 346 - udp_multicast_interface6
not ok 347 - udp_multicast_join
# timeout
# Output from process `udp_multicast_join`: (no output)
not ok 348 - udp_multicast_join6
# timeout
# Output from process `udp_multicast_join6`: (no output)
ok 349 - udp_multicast_ttl
Forwarded: not-needed
Author: dod
--- a/test/test-udp-multicast-join.c
+++ b/test/test-udp-multicast-join.c
@@ -150,6 +150,8 @@
int r;
struct sockaddr_in addr;
+ RETURN_SKIP("multicast does not work on Debian build deamons");
+
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
r = uv_udp_init(uv_default_loop(), &server);
--- a/test/test-udp-multicast-join6.c
+++ b/test/test-udp-multicast-join6.c
@@ -170,6 +170,8 @@
int r;
struct sockaddr_in6 addr;
+ RETURN_SKIP("multicast does not work on Debian build deamons");
+
if (!can_ipv6_external())
RETURN_SKIP("No external IPv6 interface available");
|