# HG changeset patch # User Bram Moolenaar # Date 1542391205 -3600 # Node ID f47b5dfe5c6d56047060ef50e2d5aede468dd839 # Parent f07bd0921a81f87b1c72338f72597aaf6174b47a patch 8.1.0533: screendump tests can be flaky commit https://github.com/vim/vim/commit/447f6ce8bd42fe3adbdf97eff9a38a9bfef9eeed Author: Bram Moolenaar Date: Fri Nov 16 18:50:19 2018 +0100 patch 8.1.0533: screendump tests can be flaky Problem: Screendump tests can be flaky. Solution: Add VerifyScreenDump to the pattern of flaky tests. diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -330,7 +330,7 @@ let s:flaky_tests = [ \ ] " Pattern indicating a common flaky test failure. -let s:flaky_errors_re = 'StopVimInTerminal' +let s:flaky_errors_re = 'StopVimInTerminal\|VerifyScreenDump' " Locate Test_ functions and execute them. redir @q diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -793,6 +793,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 533, +/**/ 532, /**/ 531,