annotate src/testdir/bench_re_freeze.vim @ 16326:1679b9f54946 v8.1.1168

patch 8.1.1168: not all screen update code of terminal is executed in tests commit https://github.com/vim/vim/commit/87dcfd75c218107ca966c80a0a56b236be046fc9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 13 22:35:29 2019 +0200 patch 8.1.1168: not all screen update code of terminal is executed in tests Problem: Not all screen update code of the terminal window is executed in tests. Solution: Redraw before taking a screenshot.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Apr 2019 22: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