Mercurial > vim
view src/testdir/bench_re_freeze.vim @ 15796:481452f6687c v8.1.0905
patch 8.1.0905: complicated regexp causes a crash
commit https://github.com/vim/vim/commit/5567ad48b66dff13670af52a48509059acc34dfe
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 12 23:05:46 2019 +0100
patch 8.1.0905: complicated regexp causes a crash
Problem: Complicated regexp causes a crash. (Kuang-che Wu)
Solution: Limit the recursiveness of addstate(). (closes https://github.com/vim/vim/issues/3941)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 12 Feb 2019 23:15:06 +0100 |
parents | adfbffe1e642 |
children |
line wrap: on
line source
"Test for benchmarking the RE engine so small.vim if !has("reltime") | finish | endif func! Measure(file, pattern, arg) for re in range(3) let sstart=reltime() let cmd=printf("../vim -u NONE -N --cmd ':set re=%d'". \ " -c 'call search(\"%s\", \"\", \"\", 10000)' -c ':q!' %s", re, escape(a:pattern, '\\'), empty(a:arg) ? '' : a:arg) call system(cmd. ' '. a:file) $put =printf('file: %s, re: %d, time: %s', a:file, re, reltimestr(reltime(sstart))) endfor endfunc