From: Aliaksei Budavei <0x000c70@gmail.com> Date: Thu, 19 Sep 2024 17:43:14 +0000 (+0200) Subject: patch 9.1.0737: tests: screendump tests may require a bit more time X-Git-Tag: v9.1.0737^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dfe1110fdcd2f54b56ac789df6167807a867391;p=thirdparty%2Fvim.git patch 9.1.0737: tests: screendump tests may require a bit more time Problem: Asynchronous terminal jobs occassionally require more time to complete and redraw the window Solution: increase the sleep value from 10 to 50 milliseconds (Aliaksei Budavei) closes: #15695 Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim index a2a54f4ec3..e7cda2ef47 100644 --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -80,7 +80,7 @@ func VerifyScreenDump(buf, filename, options, ...) let i = 0 while 1 " leave some time for updating the original window - sleep 10m + sleep 50m call delete(testfile) call term_dumpwrite(a:buf, testfile, a:options) let testdump = ReadAndFilter(testfile, filter) diff --git a/src/version.c b/src/version.c index d5aed36143..5f20651b15 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 737, /**/ 736, /**/