mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
test: don't block to wait for previous session's exit (#35885)
This reduces the time taken by clear() by over 20% with ASAN.
This commit is contained in:
@@ -105,8 +105,8 @@ function RpcStream:read_stop()
|
||||
self._stream:read_stop()
|
||||
end
|
||||
|
||||
function RpcStream:close(signal)
|
||||
self._stream:close(signal)
|
||||
function RpcStream:close(signal, noblock)
|
||||
self._stream:close(signal, noblock)
|
||||
end
|
||||
|
||||
return RpcStream
|
||||
|
Reference in New Issue
Block a user