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:
Justin M. Keyes 2017-07-02 00:30:00 +02:00 committed by GitHub
parent 57d691e81a
commit ca4633bfe4

View File

@ -282,8 +282,13 @@ describe('server -> client', function()
end) end)
end) end)
describe('when connecting to its own pipe adress', function() describe('connecting to its own pipe address', function()
it('it does not deadlock', 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 address = funcs.serverlist()[1]
local first = string.sub(address,1,1) local first = string.sub(address,1,1)
ok(first == '/' or first == '\\') ok(first == '/' or first == '\\')