File: skip-multicast-test

package info (click to toggle)
libuv1 1.51.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,772 kB
  • sloc: ansic: 74,890; makefile: 676; python: 189; sh: 51; javascript: 18
file content (35 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (2)
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");