mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci/quickbuild: XXX: disable server_requests test (#6851)
Temporarily disable this test which hangs quickbuild.
From #6905: The hang occurs when calling nvim_set_current_line.
References #6594 5a151555c8
This commit is contained in:
parent
57d691e81a
commit
ca4633bfe4
@ -282,8 +282,13 @@ describe('server -> client', function()
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('when connecting to its own pipe adress', function()
|
||||
it('it does not deadlock', function()
|
||||
describe('connecting to its own pipe address', function()
|
||||
it('does not deadlock', function()
|
||||
if not os.getenv("TRAVIS") and helpers.os_name() == "osx" then
|
||||
-- It does, in fact, deadlock on QuickBuild. #6851
|
||||
pending("deadlocks on QuickBuild", function() end)
|
||||
return
|
||||
end
|
||||
local address = funcs.serverlist()[1]
|
||||
local first = string.sub(address,1,1)
|
||||
ok(first == '/' or first == '\\')
|
||||
|
Loading…
Reference in New Issue
Block a user