diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-20 10:03:57 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-21 19:07:50 +0800 |
commit | 407be5975db5dd63671397676eef0279662c603d (patch) | |
tree | dd6f0cc361f9480bb959549c7c45507809b47cf3 | |
parent | 69ac382a283c92c54fc40b0017688a60fe89a49c (diff) | |
download | rneovim-407be5975db5dd63671397676eef0279662c603d.tar.gz rneovim-407be5975db5dd63671397676eef0279662c603d.tar.bz2 rneovim-407be5975db5dd63671397676eef0279662c603d.zip |
vim-patch:8.2.2475: autocommand tests hangs on MS-Windows
Problem: Autocommand tests hangs on MS-Windows.
Solution: Skip one test.
https://github.com/vim/vim/commit/dfc3db76b9de217542cc9258301c1b4818a51cd0
-rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index 6cfca21f71..b80b564470 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -2717,6 +2717,9 @@ endfunc " Fuzzer found some strange combination that caused a crash. func Test_autocmd_normal_mess() + " TODO: why does this hang on Windows? + CheckNotMSWindows + augroup aucmd_normal_test au BufLeave,BufWinLeave,BufHidden,BufUnload,BufDelete,BufWipeout * norm 7q/qc augroup END |