# HG changeset patch # User Christian Brabandt # Date 1455832825 -3600 # Node ID 1f28be191fab6d777e080245b7de17d905192bb8 # Parent 1a8ee36e2c56b738dfe048c162a38a26bdaf4a81 commit https://github.com/vim/vim/commit/922d25f99c6d38e7f9cfca7a53ab841641517ebc Author: Bram Moolenaar Date: Thu Feb 18 22:58:26 2016 +0100 patch 7.4.1353 Problem: Test_connect_waittime is skipped for MS-Windows. Solution: Add the test back, it works now. diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -268,10 +268,6 @@ endfunc " Test that trying to connect to a non-existing port fails quickly. func Test_connect_waittime() - if !has('unix') - " TODO: Make this work again for MS-Windows. - return - endif call ch_log('Test_connect_waittime()') let start = reltime() let handle = ch_open('localhost:9876', s:chopt) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1353, +/**/ 1352, /**/ 1351,