# HG changeset patch # User Christian Brabandt # Date 1726768805 -7200 # Node ID 9d1ff79eebbbdb3ea3b4b561977df83ebf526d6e # Parent 89b487b08b2ae3e29799d222e26b626ecba4ab9b patch 9.1.0737: tests: screendump tests may require a bit more time Commit: https://github.com/vim/vim/commit/9dfe1110fdcd2f54b56ac789df6167807a867391 Author: Aliaksei Budavei <0x000c70@gmail.com> Date: Thu Sep 19 19:43:14 2024 +0200 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 --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -80,7 +80,7 @@ func VerifyScreenDump(buf, filename, opt 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 --- a/src/version.c +++ b/src/version.c @@ -705,6 +705,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 737, +/**/ 736, /**/ 735,