patch 7.4.1342
Problem: On Mac OS/X the waittime must be > 0 for connect to work.
Solution: Use select() in a different way. (partly by Kazunobu Kuriyama)
Always use a waittime of 1 or more.
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index 7cd32c8..85a257a 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -28,7 +28,7 @@
finish
endif
-let s:chopt = has('osx') ? {'waittime' : 1} : {}
+let s:chopt = {}
" Run "testfunc" after sarting the server and stop the server afterwards.
func s:run_server(testfunc)