diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-01-19 14:19:59 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-01-19 14:22:01 +0100 |
commit | 3a574af3c4193f2f3437ec49645b54e86a682088 (patch) | |
tree | d48ff1a0b5de2e8878431ef8e440d2bdeb3fbd35 | |
parent | b7b82f8c71a9282cd4f281b0058d5aec8f3e7a2b (diff) | |
download | rneovim-3a574af3c4193f2f3437ec49645b54e86a682088.tar.gz rneovim-3a574af3c4193f2f3437ec49645b54e86a682088.tar.bz2 rneovim-3a574af3c4193f2f3437ec49645b54e86a682088.zip |
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.
-rw-r--r-- | test/functional/ex_cmds/ctrl_c_spec.lua | 6 | ||||
-rw-r--r-- | test/functional/ui/output_spec.lua | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/test/functional/ex_cmds/ctrl_c_spec.lua b/test/functional/ex_cmds/ctrl_c_spec.lua index b0acb02000..072fd2ad10 100644 --- a/test/functional/ex_cmds/ctrl_c_spec.lua +++ b/test/functional/ex_cmds/ctrl_c_spec.lua @@ -3,17 +3,15 @@ local Screen = require('test.functional.ui.screen') local clear, feed, source = helpers.clear, helpers.feed, helpers.source local execute = helpers.execute -if helpers.pending_win32(pending) then return end - describe("CTRL-C (mapped)", function() before_each(function() clear() end) it("interrupts :global", function() + -- Crashes luajit. if helpers.skip_fragile(pending, - (os.getenv("TRAVIS") and os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN")) - then + os.getenv("TRAVIS") or os.getenv("APPVEYOR")) then return end diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua index d6d8f1c4e5..47b2516188 100644 --- a/test/functional/ui/output_spec.lua +++ b/test/functional/ui/output_spec.lua @@ -25,7 +25,7 @@ describe("shell command :!", function() screen:detach() 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) -- to avoid triggering a UI flush. child_session.feed_data(":!printf foo; sleep 200\n") |