# HG changeset patch # User Bram Moolenaar # Date 1662054303 -7200 # Node ID 17c46a3d0ef5612840a3255f5c754c72671a66e4 # Parent c378d8af99b9612f41bb8df930dbf6a00054944c patch 9.0.0354: MS-Windows: starting a python server for test sometimes fails Commit: https://github.com/vim/vim/commit/a906e8e1abf0a4c9a058ec5ee8a4c321a008cd41 Author: Bram Moolenaar Date: Thu Sep 1 18:42:32 2022 +0100 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. diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -62,8 +62,8 @@ endfunc " Read the port number from the Xportnr file. func GetPort() let l = [] - " with 200 it sometimes failed - for i in range(400) + " with 200 it sometimes failed, with 400 is rarily failed + for i in range(600) try let l = readfile("Xportnr") catch diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -708,6 +708,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 354, +/**/ 353, /**/ 352,