Mercurial > vim
view src/testdir/bench_re_freeze.vim @ 19866:1136ec381dd2 v8.2.0489
patch 8.2.0489: Vim9: memory leaks
Commit: https://github.com/vim/vim/commit/25b70c780a7e6063544e7f93c368fe403076f34e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Apr 1 16:34:17 2020 +0200
patch 8.2.0489: Vim9: memory leaks
Problem: Vim9: memory leaks.
Solution: Free memory in the right place. Add hints for using asan.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 01 Apr 2020 16:45:05 +0200 |
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