# HG changeset patch # User Bram Moolenaar # Date 1577286003 -3600 # Node ID 8295f4061dc2a13de9a80332602a15b644f081e5 # Parent 233176dfe0d00e973b48d0fca78ee8c1d94ce9ca patch 8.2.0043: timers test is still flaky on Travis for Mac Commit: https://github.com/vim/vim/commit/818fed7a5ea1f1b11493557989a689ff163051e9 Author: Bram Moolenaar Date: Wed Dec 25 15:47:14 2019 +0100 patch 8.2.0043: timers test is still flaky on Travis for Mac Problem: Timers test is still flaky on Travis for Mac. Solution: Increase maximum expected time. diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -20,8 +20,8 @@ func Test_timer_oneshot() let slept = WaitFor('g:val == 1') call assert_equal(1, g:val) if has('mac') - " Mac on Travis can be slow. - let limit = 160 + " Mac on Travis can be very slow. + let limit = 180 else let limit = 100 endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 43, +/**/ 42, /**/ 41,