Mercurial > vim
view src/testdir/bench_re_freeze.vim @ 18546:f609865bfc54 v8.1.2267
patch 8.1.2267: compiler warning for uninitialized variable
Commit: https://github.com/vim/vim/commit/3b991527e8167f25ad1dfe780b9633c153600955
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Nov 6 23:26:20 2019 +0100
patch 8.1.2267: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution: Rearrange the code.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 06 Nov 2019 23:30:03 +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