# HG changeset patch # User Bram Moolenaar # Date 1655725503 -7200 # Node ID cdb22dde06b966e7a5281ef03827dba8b036d609 # Parent 8095f317cb9c6f996cb5aa8fa23e2c187bad9225 patch 8.2.5140: seachpair timeout test is flaky Commit: https://github.com/vim/vim/commit/73171ba4344e17484699d11c65d57fb1f4de572a Author: Bram Moolenaar Date: Mon Jun 20 12:39:39 2022 +0100 patch 8.2.5140: seachpair timeout test is flaky Problem: Seachpair timeout test is flaky. Solution: Mark the test as flaky so it is retried. diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim --- a/src/testdir/test_search.vim +++ b/src/testdir/test_search.vim @@ -333,6 +333,7 @@ endfunc func Test_searchpair_timeout() CheckFeature reltime + let g:test_is_flaky = 1 func Waitabit() sleep 20m @@ -1606,6 +1607,7 @@ func Test_search_errors() endfunc func Test_search_timeout() + let g:test_is_flaky = 1 new " use a complicated pattern that should be slow with the BT engine let pattern = '\%#=1a*.*X\@<=b*' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5140, +/**/ 5139, /**/ 5138,