Mercurial > vim
view src/testdir/test_bench_regexp.vim @ 33920:28e1e956f42c v9.0.2159
patch 9.0.2159: screenpos() may crash with neg. column
Commit: https://github.com/vim/vim/commit/ec54af4e26952d954a4cc009f62c80ea01445d30
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Dec 12 16:43:44 2023 +0100
patch 9.0.2159: screenpos() may crash with neg. column
Problem: screenpos() may crash with neg. column
Solution: validate and correct column
closes: #13669
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 12 Dec 2023 17:00:08 +0100 |
parents | 16460964c304 |
children |
line wrap: on
line source
" Test for benchmarking the RE engine source check.vim CheckFeature reltime func Measure(file, pattern, arg) for re in range(3) let sstart = reltime() let before = ['set re=' .. re] let after = ['call search("' .. escape(a:pattern, '\\') .. '", "", "", 10000)'] let after += ['quit!'] let args = empty(a:arg) ? '' : a:arg .. ' ' .. a:file call RunVim(before, after, args) let s = 'file: ' .. a:file .. ', re: ' .. re .. \ ', time: ' .. reltimestr(reltime(sstart)) call writefile([s], 'benchmark.out', "a") endfor endfunc func Test_Regex_Benchmark() call Measure('samples/re.freeze.txt', '\s\+\%#\@<!$', '+5') endfunc " vim: shiftwidth=2 sts=2 expandtab