mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #9436 from jamessan/more-fragile-tests
Mark a few more functionaltests as fragile
This commit is contained in:
commit
e2e5a105c6
@ -2512,6 +2512,9 @@ describe(":substitute", function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it(':substitute with inccommand during :terminal activity', function()
|
it(':substitute with inccommand during :terminal activity', function()
|
||||||
|
if helpers.skip_fragile(pending) then
|
||||||
|
return
|
||||||
|
end
|
||||||
retry(2, 40000, function()
|
retry(2, 40000, function()
|
||||||
local screen = Screen.new(30,15)
|
local screen = Screen.new(30,15)
|
||||||
clear()
|
clear()
|
||||||
|
@ -61,6 +61,9 @@ describe('feeding large chunks of input with <Paste>', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it('ok', function()
|
it('ok', function()
|
||||||
|
if helpers.skip_fragile(pending) then
|
||||||
|
return
|
||||||
|
end
|
||||||
local t = {}
|
local t = {}
|
||||||
for i = 1, 20000 do
|
for i = 1, 20000 do
|
||||||
t[i] = 'item ' .. tostring(i)
|
t[i] = 'item ' .. tostring(i)
|
||||||
|
@ -51,6 +51,9 @@ describe("shell command :!", function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it("throttles shell-command output greater than ~10KB", function()
|
it("throttles shell-command output greater than ~10KB", function()
|
||||||
|
if helpers.skip_fragile(pending) then
|
||||||
|
return
|
||||||
|
end
|
||||||
child_session.feed_data(
|
child_session.feed_data(
|
||||||
":!for i in $(seq 2 30000); do echo XXXXXXXXXX $i; done\n")
|
":!for i in $(seq 2 30000); do echo XXXXXXXXXX $i; done\n")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user