diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-12-07 23:55:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 23:55:18 +0100 |
commit | ff99cbfc0273bb9f714c32a62ec02b888c196a2e (patch) | |
tree | bbfb82885565dc382721716f3d550a259852ad28 /test/functional/ui/mouse_spec.lua | |
parent | 8da23cb919e55825bc89f0ebfcebcc07374d9d18 (diff) | |
parent | 933c873cae64d3840bb0539b51a983a240eeff28 (diff) | |
download | rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.tar.gz rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.tar.bz2 rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.zip |
Merge #5488 from justinmk/test-fix-mouse-drag
test: Disable unreliable test on travis+ASAN_UBSAN
Diffstat (limited to 'test/functional/ui/mouse_spec.lua')
-rw-r--r-- | test/functional/ui/mouse_spec.lua | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/functional/ui/mouse_spec.lua b/test/functional/ui/mouse_spec.lua index 13bfe9e23f..b729b0db08 100644 --- a/test/functional/ui/mouse_spec.lua +++ b/test/functional/ui/mouse_spec.lua @@ -153,8 +153,9 @@ describe('Mouse input', function() end) it('in tabline to the left moves tab left', function() - if os.getenv("TRAVIS") and helpers.os_name() == "osx" then - pending("[Fails on Travis macOS. #4874]", function() end) + 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) return end @@ -256,8 +257,9 @@ 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" then - pending("[Fails on Travis macOS. #4874]", function() end) + 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) return end |