diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-07-06 12:56:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-06 12:56:19 +0800 |
commit | 2afb04758c341e17c70b8d2e3869c901c8cdb7d2 (patch) | |
tree | 8a1fb611ce2319e552fe3331b58ffaa4712d652e /test/functional/lua/ui_spec.lua | |
parent | 25e62697c32e43d978e43776f9a01cd62bfe83be (diff) | |
download | rneovim-2afb04758c341e17c70b8d2e3869c901c8cdb7d2.tar.gz rneovim-2afb04758c341e17c70b8d2e3869c901c8cdb7d2.tar.bz2 rneovim-2afb04758c341e17c70b8d2e3869c901c8cdb7d2.zip |
fix(vim.system): close check handle (#24270)
Fix hang after running vim.system() with sanitizers.
Diffstat (limited to 'test/functional/lua/ui_spec.lua')
-rw-r--r-- | test/functional/lua/ui_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/ui_spec.lua b/test/functional/lua/ui_spec.lua index d1b64419af..808b25d9ea 100644 --- a/test/functional/lua/ui_spec.lua +++ b/test/functional/lua/ui_spec.lua @@ -5,7 +5,7 @@ local exec_lua = helpers.exec_lua local clear = helpers.clear local feed = helpers.feed local eval = helpers.eval -local is_os = helpers.is_os +local is_ci = helpers.is_ci local poke_eventloop = helpers.poke_eventloop describe('vim.ui', function() @@ -134,7 +134,7 @@ describe('vim.ui', function() describe('open()', function() it('validation', function() - if not is_os('bsd') then + if is_ci('github') then matches('vim.ui.open: command failed %(%d%): { "[^"]+", "non%-existent%-file" }', exec_lua[[local _, err = vim.ui.open('non-existent-file') ; return err]]) end |