Skip to content

Commit a906e8e

Browse files
committed
patch 9.0.0354: MS-Windows: starting a python server for test sometimes fails
Problem: MS-Windows: starting a python server for test sometimes fails. Solution: Increase the waiting time for the port.
1 parent 68a635a commit a906e8e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/shared.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ endfunc
6262
" Read the port number from the Xportnr file.
6363
func GetPort()
6464
let l = []
65-
" with 200 it sometimes failed
66-
for i in range(400)
65+
" with 200 it sometimes failed, with 400 is rarily failed
66+
for i in range(600)
6767
try
6868
let l = readfile("Xportnr")
6969
catch

src/version.c

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

708708
static int included_patches[] =
709709
{ /* Add new patch number below this line */
710+
/**/
711+
354,
710712
/**/
711713
353,
712714
/**/

0 commit comments

Comments
 (0)