Skip to content

Commit 0727d36

Browse files
committed
patch 7.4.1317
Problem: MS-Windows: channel test fails. Solution: Temporarily disable Test_connect_waittime().
1 parent fa4bce7 commit 0727d36

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/testdir/test_channel.vim

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,10 @@ endfunc
252252

253253
" Test that trying to connect to a non-existing port fails quickly.
254254
func Test_connect_waittime()
255+
if !has('unix')
256+
" TODO: Make this work again for MS-Windows.
257+
return
258+
endif
255259
let start = reltime()
256260
let handle = ch_open('localhost:9876', s:chopt)
257261
if ch_status(handle) == "fail"

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1317,
750752
/**/
751753
1316,
752754
/**/

0 commit comments

Comments
 (0)