mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
windows: ok(#children >= 3 and #chidlen <= 5)
Depending on the version of Windows, conhost.exe may not be included in the child process.
This commit is contained in:
parent
ae60172106
commit
e82fc20f23
@ -777,9 +777,9 @@ describe('jobs', function()
|
||||
retry(nil, nil, function()
|
||||
children = meths.get_proc_children(ppid)
|
||||
if iswin() then
|
||||
-- On Windows there is conhost.exe always,
|
||||
-- and e.g. vctip.exe might appear. #10783
|
||||
ok(#children >= 4 and #children <= 5)
|
||||
-- On Windows conhost.exe may exist, and
|
||||
-- e.g. vctip.exe might appear. #10783
|
||||
ok(#children >= 3 and #children <= 5)
|
||||
else
|
||||
eq(3, #children)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user