From bbd880ca2e9ec25ac5bc3213b75c81bcc2a22b32 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 12 Apr 2026 21:30:33 -0400 Subject: [PATCH] vim-patch:9.0.0354: MS-Windows: starting a python server for test sometimes fails (#38998) Problem: MS-Windows: starting a python server for test sometimes fails. Solution: Increase the waiting time for the port. https://github.com/vim/vim/commit/a906e8e1abf0a4c9a058ec5ee8a4c321a008cd41 Co-authored-by: Bram Moolenaar --- test/old/testdir/shared.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/old/testdir/shared.vim b/test/old/testdir/shared.vim index cefca1c2e6..205847fc0e 100644 --- a/test/old/testdir/shared.vim +++ b/test/old/testdir/shared.vim @@ -82,8 +82,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