view src/testdir/test_bench_regexp.vim @ 35067:b2e515aab168 default tip

runtime(doc): CI: remove trailing white space in documentation Commit: https://github.com/vim/vim/commit/11250510404860a76d9e9cea4f99025277f607a5 Author: Christian Brabandt <cb@256bit.org> Date: Sat Apr 27 12:01:15 2024 +0200 runtime(doc): CI: remove trailing white space in documentation Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 27 Apr 2024 12:15:02 +0200
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