diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-01-04 13:32:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-04 13:32:39 +0100 |
commit | 0ce77a744a381689614f578a6eef0853b4cada9a (patch) | |
tree | f72a08e0f63dde3831ed69cc14bf141e8e55bc20 /test/functional/ui/mouse_spec.lua | |
parent | d8a97d7b7912ae981c3b904ccbd014b2f2da1832 (diff) | |
parent | e03b43bd07bd359076c7332f1cb874ebc5308951 (diff) | |
download | rneovim-0ce77a744a381689614f578a6eef0853b4cada9a.tar.gz rneovim-0ce77a744a381689614f578a6eef0853b4cada9a.tar.bz2 rneovim-0ce77a744a381689614f578a6eef0853b4cada9a.zip |
Merge #5749 from justinmk/test-ctrl-c
Diffstat (limited to 'test/functional/ui/mouse_spec.lua')
-rw-r--r-- | test/functional/ui/mouse_spec.lua | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/test/functional/ui/mouse_spec.lua b/test/functional/ui/mouse_spec.lua index b729b0db08..17d949825a 100644 --- a/test/functional/ui/mouse_spec.lua +++ b/test/functional/ui/mouse_spec.lua @@ -153,9 +153,10 @@ describe('Mouse input', function() end) it('in tabline to the left moves tab left', function() - if os.getenv("TRAVIS") and (helpers.os_name() == "osx" - or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN") then - pending("[Fails on Travis macOS, ASAN_UBSAN. #4874]", function() end) + if helpers.skip_fragile(pending, + os.getenv("TRAVIS") and (helpers.os_name() == "osx" + or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN")) -- #4874 + then return end @@ -257,9 +258,10 @@ describe('Mouse input', function() end) it('out of tabline to the left moves tab left', function() - if os.getenv("TRAVIS") and (helpers.os_name() == "osx" - or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN") then - pending("[Fails on Travis macOS, ASAN_UBSAN. #4874]", function() end) + if helpers.skip_fragile(pending, + os.getenv("TRAVIS") and (helpers.os_name() == "osx" + or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN")) -- #4874 + then return end |