Skip to content

Commit 3fad98e

Browse files
committed
patch 8.0.0122
Problem: Channel test is still flaky on OS X. Solution: Add a short sleep.
1 parent a2477fd commit 3fad98e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/testdir/test_channel.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ def handle(self):
126126
print("sending: {0}".format(cmd))
127127
self.request.sendall(cmd.encode('utf-8'))
128128
response = "ok"
129+
# Need to wait for Vim to give up, otherwise it
130+
# sometimes fails on OS X.
131+
time.sleep(0.2)
129132
elif decoded[1] == 'malformed2':
130133
cmd = '"unterminated string'
131134
print("sending: {0}".format(cmd))

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
122,
767769
/**/
768770
121,
769771
/**/

0 commit comments

Comments
 (0)