# HG changeset patch # User Christian Brabandt # Date 1517669104 -3600 # Node ID 45a9c54a64687adafad9de0aa5446418943618ab # Parent 98e5b0cddada04559067e8826d6be5a31fcd8c58 patch 8.0.1456: timer test on travis Mac is still flaky commit https://github.com/vim/vim/commit/8dce6c54c81f13582617db3127071b3436b8163b Author: Bram Moolenaar Date: Sat Feb 3 15:38:42 2018 +0100 patch 8.0.1456: timer test on travis Mac is still flaky Problem: Timer test on travis Mac is still flaky. Solution: Increase time range a bit more. 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 @@ -124,7 +124,7 @@ func Test_paused() if has('reltime') if has('mac') " The travis Mac machines appear to be very busy. - call assert_inrange(0, 40, slept) + call assert_inrange(0, 50, slept) else call assert_inrange(0, 30, slept) endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1456, +/**/ 1455, /**/ 1454,