annotate src/testdir/bench_re_freeze.vim @ 19960:3c11b9f6fa03 v8.2.0536

patch 8.2.0536: Vim9: some compilation code not tested Commit: https://github.com/vim/vim/commit/5da356e07359a59cf2d682908ba8592a72d5d9cd Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 9 19:34:43 2020 +0200 patch 8.2.0536: Vim9: some compilation code not tested Problem: Vim9: some compilation code not tested. Solution: Add more test cases.
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Apr 2020 19:45:04 +0200
parents adfbffe1e642
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6328
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 "Test for benchmarking the RE engine
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 so small.vim
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 if !has("reltime") | finish | endif
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 func! Measure(file, pattern, arg)
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 for re in range(3)
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 let sstart=reltime()
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 let cmd=printf("../vim -u NONE -N --cmd ':set re=%d'".
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 \ " -c 'call search(\"%s\", \"\", \"\", 10000)' -c ':q!' %s", re, escape(a:pattern, '\\'), empty(a:arg) ? '' : a:arg)
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 call system(cmd. ' '. a:file)
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 $put =printf('file: %s, re: %d, time: %s', a:file, re, reltimestr(reltime(sstart)))
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 endfor
adfbffe1e642 updated for version 7.4.497
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 endfunc