Skip multicast test
authorDominique Dumont <dod@debian.org>
Thu, 24 Mar 2022 17:44:13 +0000 (17:44 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 24 Mar 2022 17:44:13 +0000 (17:44 +0000)
Forwarded: not-needed

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

Gbp-Pq: Name skip-multicast-test

test/test-udp-multicast-join.c
test/test-udp-multicast-join6.c

index 9e603a8455f736e75ba4775a53b91f837173904b..a0ccf5cc329df6bcb253ebe3dc9e0b247d5891a9 100644 (file)
@@ -141,6 +141,8 @@ TEST_IMPL(udp_multicast_join) {
   int r;
   struct sockaddr_in addr;
 
+  RETURN_SKIP("muliticast does not work on Debian build deamons");
+
   ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
 
   r = uv_udp_init(uv_default_loop(), &server);
index e67c5ee59bb1fb7e17a771d8d17e0cd75c4391aa..5f5eb778fb7a5dfa1980af0930082a90d1878ca3 100644 (file)
@@ -170,6 +170,8 @@ TEST_IMPL(udp_multicast_join6) {
   int r;
   struct sockaddr_in6 addr;
 
+  RETURN_SKIP("muliticast does not work on Debian build deamons");
+
   if (!can_ipv6_external())
     RETURN_SKIP("No external IPv6 interface available");