ci: XXX: Disable "throttle" test on Travis macOS.

This commit is contained in:
Justin M. Keyes 2017-01-23 22:15:49 +01:00
parent 5892aab1b5
commit a3a241d313

View File

@ -41,6 +41,11 @@ 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 os.getenv("TRAVIS") and helpers.os_name() == "osx" then
pending("[Unreliable on Travis macOS.]", function() end)
return
end
screen.timeout = 20000 -- Avoid false failure on slow systems. screen.timeout = 20000 -- Avoid false failure on slow systems.
child_session.feed_data( child_session.feed_data(
":!for i in $(seq 2 3000); do echo XXXXXXXXXX $i; done\n") ":!for i in $(seq 2 3000); do echo XXXXXXXXXX $i; done\n")