Skip to content

Commit

Permalink
Disable flaky UDP test on macOS CI
Browse files Browse the repository at this point in the history
See #704
  • Loading branch information
squeek502 committed Jun 4, 2024
1 parent b32cc4d commit 8d334e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test-udp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ return require('lib/tap')(function (test)
timeout:close()
else
-- udp_set_source_membership added in 1.32.0
if uvVersionGEQ("1.32.0") then
-- Temporarily disabled on macOS CI, see https://github.com/luvit/luv/issues/704
if uvVersionGEQ("1.32.0") and uv.os_getenv("RUNNER_OS") ~= "macOS" then
local source_addr = addr.ip
assert(server:set_membership(multicast_addr, interface_addr, "leave"))
_, err, errname = server:set_source_membership(multicast_addr, interface_addr, source_addr, "join")
Expand Down

0 comments on commit 8d334e5

Please sign in to comment.