mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
test: Disable unreliable tests on travis+ASAN_UBSAN
This commit is contained in:
parent
1a4f13ba8f
commit
a1b0f594ea
@ -153,8 +153,9 @@ describe('Mouse input', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it('in tabline to the left moves tab left', function()
|
it('in tabline to the left moves tab left', function()
|
||||||
if os.getenv("TRAVIS") and helpers.os_name() == "osx" then
|
if os.getenv("TRAVIS") and (helpers.os_name() == "osx"
|
||||||
pending("[Fails on Travis macOS. #4874]", function() end)
|
or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN") then
|
||||||
|
pending("[Fails on Travis macOS, ASAN_UBSAN. #4874]", function() end)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -256,8 +257,9 @@ describe('Mouse input', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it('out of tabline to the left moves tab left', function()
|
it('out of tabline to the left moves tab left', function()
|
||||||
if os.getenv("TRAVIS") and helpers.os_name() == "osx" then
|
if os.getenv("TRAVIS") and (helpers.os_name() == "osx"
|
||||||
pending("[Fails on Travis macOS. #4874]", function() end)
|
or os.getenv("CLANG_SANITIZER") == "ASAN_UBSAN") then
|
||||||
|
pending("[Fails on Travis macOS, ASAN_UBSAN. #4874]", function() end)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user