aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_cmdline.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-11-05 12:26:17 +0800
committerGitHub <noreply@github.com>2022-11-05 12:26:17 +0800
commita86295cd5c2bf15a11eb05e226fd8e226154f6a6 (patch)
tree2b92fca7058bea9087cae7fadca3e425c73b07f9 /src/nvim/testdir/test_cmdline.vim
parentdaf9a63d67254342382cf79f1cd216f8e5722579 (diff)
downloadrneovim-a86295cd5c2bf15a11eb05e226fd8e226154f6a6.tar.gz
rneovim-a86295cd5c2bf15a11eb05e226fd8e226154f6a6.tar.bz2
rneovim-a86295cd5c2bf15a11eb05e226fd8e226154f6a6.zip
vim-patch:8.2.0615: regexp benchmark stest is old style (#20940)
Problem: Regexp benchmark stest is old style. Solution: Make it a new style test. Fix using a NULL list. Add more tests. (Yegappan Lakshmanan, closes vim/vim#5963) https://github.com/vim/vim/commit/ad48e6c1590842ab6d48e6caba3e9250734dae27 N/A patches: vim-patch:9.0.0829: wrong counts in macro comment
Diffstat (limited to 'src/nvim/testdir/test_cmdline.vim')
-rw-r--r--src/nvim/testdir/test_cmdline.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim
index 27ac91e49f..3e5fe06c90 100644
--- a/src/nvim/testdir/test_cmdline.vim
+++ b/src/nvim/testdir/test_cmdline.vim
@@ -1270,6 +1270,11 @@ func Test_verbosefile()
let log = readfile('Xlog')
call assert_match("foo\nbar", join(log, "\n"))
call delete('Xlog')
+ call mkdir('Xdir')
+ if !has('win32') " FIXME: no error on Windows, libuv bug?
+ call assert_fails('set verbosefile=Xdir', 'E474:')
+ endif
+ call delete('Xdir', 'd')
endfunc
func Test_verbose_option()