# HG changeset patch # User Bram Moolenaar # Date 1655565302 -7200 # Node ID 947c8434894a95229ee2afed0d0be0e4d01a13a2 # Parent 25100ad32a0d06bd6064d999c459c0cc28c79979 patch 8.2.5124: when syntax timeout test fails it does not show the time Commit: https://github.com/vim/vim/commit/620aa8eb5b1468d086253f8aa787a33a86033100 Author: Bram Moolenaar Date: Sat Jun 18 16:05:32 2022 +0100 patch 8.2.5124: when syntax timeout test fails it does not show the time Problem: When syntax timeout test fails it does not show the time. Solution: Use assert_inrange(). diff --git a/src/testdir/test_syntax.vim b/src/testdir/test_syntax.vim --- a/src/testdir/test_syntax.vim +++ b/src/testdir/test_syntax.vim @@ -544,22 +544,20 @@ func Test_syntax_hangs() syn match Error /\%#=1a*.*X\@<=b*/ redraw let elapsed = reltimefloat(reltime(start)) - call assert_true(elapsed > min_timeout) - call assert_true(elapsed < 1.0) + call assert_inrange(min_timeout, 1.0, elapsed) " second time syntax HL is disabled let start = reltime() redraw let elapsed = reltimefloat(reltime(start)) - call assert_true(elapsed < 0.1) + call assert_inrange(0, 0.1, elapsed) " after CTRL-L the timeout flag is reset let start = reltime() exe "normal \" redraw let elapsed = reltimefloat(reltime(start)) - call assert_true(elapsed > min_timeout) - call assert_true(elapsed < 1.0) + call assert_inrange(min_timeout, 1.0, elapsed) set redrawtime& bwipe! 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 */ /**/ + 5124, +/**/ 5123, /**/ 5122,