patch 7.4.1617
Problem: When a JSON message is split it isn't decoded.
Solution: Wait a short time for the rest of the message to arrive.
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index c628bbe..c4e23c9 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -127,7 +127,14 @@
call assert_equal('got it', ch_evalexpr(handle, 'hello!'))
" Malformed command should be ignored.
- call assert_equal('ok', ch_evalexpr(handle, 'malformed'))
+ call assert_equal('ok', ch_evalexpr(handle, 'malformed1'))
+ call assert_equal('ok', ch_evalexpr(handle, 'malformed2'))
+ call assert_equal('ok', ch_evalexpr(handle, 'malformed3'))
+
+ " split command should work
+ call assert_equal('ok', ch_evalexpr(handle, 'split'))
+ call s:waitFor('exists("g:split")')
+ call assert_equal(123, g:split)
" Request that triggers sending two ex commands. These will usually be
" handled before getting the response, but it's not guaranteed, thus wait a