aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-02-11 07:19:46 -0800
committerGitHub <noreply@github.com>2025-02-11 07:19:46 -0800
commitac768996b295fe58256444a258911ec0fb9adc3f (patch)
treea53e0c75184a605785dd8c1ee16f3278edd4ad41 /test/functional/vimscript
parent891d2f4029259b2790b9aa3ca71ebca0ff3d7eba (diff)
downloadrneovim-ac768996b295fe58256444a258911ec0fb9adc3f.tar.gz
rneovim-ac768996b295fe58256444a258911ec0fb9adc3f.tar.bz2
rneovim-ac768996b295fe58256444a258911ec0fb9adc3f.zip
refactor(tests): drop os_kill #32401
Also change job tests to use `nvim` instead of random programs like `ping`.
Diffstat (limited to 'test/functional/vimscript')
-rw-r--r--test/functional/vimscript/system_spec.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/functional/vimscript/system_spec.lua b/test/functional/vimscript/system_spec.lua
index b5c4972d7b..2813128aae 100644
--- a/test/functional/vimscript/system_spec.lua
+++ b/test/functional/vimscript/system_spec.lua
@@ -12,7 +12,6 @@ local command = n.command
local insert = n.insert
local expect = n.expect
local exc_exec = n.exc_exec
-local os_kill = n.os_kill
local pcall_err = t.pcall_err
local is_os = t.is_os
@@ -394,7 +393,7 @@ describe('system()', function()
it("with a program that doesn't close stdout will exit properly after passing input", function()
local out = eval(string.format("system('%s', 'clip-data')", testprg('streams-test')))
assert(out:sub(0, 5) == 'pid: ', out)
- os_kill(out:match('%d+'))
+ eq(0, vim.uv.kill(assert(tonumber(out:match('%d+'))), 'sigkill'))
end)
end)
@@ -538,7 +537,7 @@ describe('systemlist()', function()
it("with a program that doesn't close stdout will exit properly after passing input", function()
local out = eval(string.format("systemlist('%s', 'clip-data')", testprg('streams-test')))
assert(out[1]:sub(0, 5) == 'pid: ', out)
- os_kill(out[1]:match('%d+'))
+ eq(0, vim.uv.kill(assert(tonumber(out[1]:match('%d+'))), 'sigkill'))
end)
it('powershell w/ UTF-8 text #13713', function()