mirror of
https://github.com/vim/vim.git
synced 2025-10-02 05:04:20 -04:00
patch 8.0.0122
Problem: Channel test is still flaky on OS X. Solution: Add a short sleep.
This commit is contained in:
@@ -126,6 +126,9 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
|
||||
print("sending: {0}".format(cmd))
|
||||
self.request.sendall(cmd.encode('utf-8'))
|
||||
response = "ok"
|
||||
# Need to wait for Vim to give up, otherwise it
|
||||
# sometimes fails on OS X.
|
||||
time.sleep(0.2)
|
||||
elif decoded[1] == 'malformed2':
|
||||
cmd = '"unterminated string'
|
||||
print("sending: {0}".format(cmd))
|
||||
|
Reference in New Issue
Block a user