aboutsummaryrefslogtreecommitdiff
path: root/test/functional/api/server_requests_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-07-02 00:30:00 +0200
committerGitHub <noreply@github.com>2017-07-02 00:30:00 +0200
commitca4633bfe4d0f58bd5fb7343d282fafb71f3a3ee (patch)
tree5f4cba6d5746d704cae7fad886afe08f7e6fd06f /test/functional/api/server_requests_spec.lua
parent57d691e81ac32163220fc4ff78011ce37be2006e (diff)
downloadrneovim-ca4633bfe4d0f58bd5fb7343d282fafb71f3a3ee.tar.gz
rneovim-ca4633bfe4d0f58bd5fb7343d282fafb71f3a3ee.tar.bz2
rneovim-ca4633bfe4d0f58bd5fb7343d282fafb71f3a3ee.zip
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 5a151555c8dce70bbf235e7f6d5bd1ced5e7c46c
Diffstat (limited to 'test/functional/api/server_requests_spec.lua')
-rw-r--r--test/functional/api/server_requests_spec.lua9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/functional/api/server_requests_spec.lua b/test/functional/api/server_requests_spec.lua
index cf15062325..6a32f979ea 100644
--- a/test/functional/api/server_requests_spec.lua
+++ b/test/functional/api/server_requests_spec.lua
@@ -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 == '\\')