Skip to content
Snippets Groups Projects
Verified Commit 48ad9d43 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

tests/config: skip `freebind` sub-test on macOS

That option isn't supported there, so the test wouldn't work.
Now the config tests work for me on x86 macOS.
parent 61ee8892
Branches
Tags
1 merge request!1338macOS nits
Pipeline #103516 failed with stages
in 41 minutes and 6 seconds
......@@ -9,6 +9,9 @@ local function test_env_no_listen()
end
local function test_freebind()
if require('jit').os == 'OSX' then
return 77 -- freebind is not supported on macOS
end
boom(net.listen, {'192.0.2.1', 50049},
'net.listen() without freebind should fail')
-- TODO: same(kr_table_len(net.list()), 0,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment