diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-12-07 13:22:13 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-12-07 17:22:23 +0100 |
commit | a1b0f594ea4d5f50ddd381d2586cfd28ff6db8e6 (patch) | |
tree | cb260c574c14a504197c3c110ec168f56f11b309 /test/functional/ui/mouse_spec.lua | |
parent | 1a4f13ba8f93dc006d3c24de10f406367724573c (diff) | |
download | rneovim-a1b0f594ea4d5f50ddd381d2586cfd28ff6db8e6.tar.gz rneovim-a1b0f594ea4d5f50ddd381d2586cfd28ff6db8e6.tar.bz2 rneovim-a1b0f594ea4d5f50ddd381d2586cfd28ff6db8e6.zip |
test: Disable unreliable tests 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 |