comparison src/testdir/test_hlsearch.vim @ 29224:ca46658481cf v8.2.5131

patch 8.2.5131: timeout implementation is not optimal Commit: https://github.com/vim/vim/commit/e530395c2cd261d598094dc9ea785e90a753c5f1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 19 17:05:47 2022 +0100 patch 8.2.5131: timeout implementation is not optimal Problem: Timeout implementation is not optimal. Solution: Further improvements for timeouts. Add a test for searchpair() timeout. (partly by Paul Ollis)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 18:15:03 +0200
parents 32f3b86352e6
children 19648eb383d9
comparison
equal deleted inserted replaced
29223:18ff9d5a73ed 29224:ca46658481cf
35 endfunc 35 endfunc
36 36
37 func Test_hlsearch_hangs() 37 func Test_hlsearch_hangs()
38 CheckFunction reltimefloat 38 CheckFunction reltimefloat
39 39
40 " So, it turns out the Windows 7 implements TimerQueue timers differently 40 " So, it turns out that Windows 7 implements TimerQueue timers differently
41 " and they can expire *before* the requested time has elapsed. So allow for 41 " and they can expire *before* the requested time has elapsed. So allow for
42 " the timeout occurring after 80 ms (5 * 16 (the typical clock tick)). 42 " the timeout occurring after 80 ms (5 * 16 (the typical clock tick)).
43 if has("win32") 43 if has("win32")
44 let min_timeout = 0.08 44 let min_timeout = 0.08
45 else 45 else