ci: Disable "CTRL-C interrupts :global" test

This test is low-value, high-cost. It's slow, and sometimes crashes
luajit. It's still enabled on local runs, that's good enough.
This commit is contained in:
Justin M. Keyes 2017-01-19 14:19:59 +01:00
parent b7b82f8c71
commit 3a574af3c4
2 changed files with 3 additions and 5 deletions

View File

@ -3,17 +3,15 @@ local Screen = require('test.functional.ui.screen')
local clear, feed, source = helpers.clear, helpers.feed, helpers.source local clear, feed, source = helpers.clear, helpers.feed, helpers.source
local execute = helpers.execute local execute = helpers.execute
if helpers.pending_win32(pending) then return end
describe("CTRL-C (mapped)", function() describe("CTRL-C (mapped)", function()
before_each(function() before_each(function()
clear() clear()
end) end)
it("interrupts :global", function() it("interrupts :global", function()
-- Crashes luajit.
if helpers.skip_fragile(pending, if helpers.skip_fragile(pending,
(os.getenv("TRAVIS") and os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN")) os.getenv("TRAVIS") or os.getenv("APPVEYOR")) then
then
return return
end end

View File

@ -25,7 +25,7 @@ describe("shell command :!", function()
screen:detach() screen:detach()
end) end)
it("displays output even without LF/EOF. #4646 #4569 #3772", function() it("displays output without LF/EOF. #4646 #4569 #3772", function()
-- NOTE: We use a child nvim (within a :term buffer) -- NOTE: We use a child nvim (within a :term buffer)
-- to avoid triggering a UI flush. -- to avoid triggering a UI flush.
child_session.feed_data(":!printf foo; sleep 200\n") child_session.feed_data(":!printf foo; sleep 200\n")