aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-02-19 11:11:05 +0100
committerDundar Göc <gocdundar@gmail.com>2022-02-20 10:22:39 +0100
commit82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8 (patch)
tree739fca2a09149899c6f12b10879e0097bfc425a2 /test/functional/ui
parent2550212b25f313c781ac048757b6969c920cd78f (diff)
downloadrneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.gz
rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.bz2
rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.zip
ci: skip tests that fail on windows
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/hlstate_spec.lua2
-rw-r--r--test/functional/ui/messages_spec.lua1
-rw-r--r--test/functional/ui/output_spec.lua2
3 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/ui/hlstate_spec.lua b/test/functional/ui/hlstate_spec.lua
index 2a567b28ee..295b70f265 100644
--- a/test/functional/ui/hlstate_spec.lua
+++ b/test/functional/ui/hlstate_spec.lua
@@ -179,6 +179,8 @@ describe('ext_hlstate detailed highlights', function()
end)
it("work with :terminal", function()
+ if helpers.pending_win32(pending) then return end
+
screen:set_default_attr_ids({
[1] = {{}, {{hi_name = "TermCursorNC", ui_name = "TermCursorNC", kind = "ui"}}},
[2] = {{foreground = tonumber('0x00ccff'), fg_indexed=true}, {{kind = "term"}}},
diff --git a/test/functional/ui/messages_spec.lua b/test/functional/ui/messages_spec.lua
index f038348253..949591870a 100644
--- a/test/functional/ui/messages_spec.lua
+++ b/test/functional/ui/messages_spec.lua
@@ -1206,6 +1206,7 @@ end)
describe('ui/msg_puts_printf', function()
it('output multibyte characters correctly', function()
+ if helpers.pending_win32(pending) then return end
local screen
local cmd = ''
local locale_dir = test_build_dir..'/share/locale/ja/LC_MESSAGES'
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua
index 50e5dfac84..7df63aca50 100644
--- a/test/functional/ui/output_spec.lua
+++ b/test/functional/ui/output_spec.lua
@@ -14,6 +14,7 @@ local has_powershell = helpers.has_powershell
local set_shell_powershell = helpers.set_shell_powershell
describe("shell command :!", function()
+ if not iswin() then
local screen
before_each(function()
clear()
@@ -77,6 +78,7 @@ describe("shell command :!", function()
[10] = {foreground = 2},
})
end)
+ end
end)
describe("shell command :!", function()