diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-13 22:38:54 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-05-13 22:45:59 +0800 |
commit | 2de3362ce3877b622a26c21214c95c69892b8c63 (patch) | |
tree | cdcee8de4e90c0cd6f290c0f5f0c0a635834573e | |
parent | 7eea6b12f98c4319d2f358ee1c1ebd3f5b2dfa62 (diff) | |
download | rneovim-2de3362ce3877b622a26c21214c95c69892b8c63.tar.gz rneovim-2de3362ce3877b622a26c21214c95c69892b8c63.tar.bz2 rneovim-2de3362ce3877b622a26c21214c95c69892b8c63.zip |
vim-patch:9.0.0492: cmdwin test fails on MS-Windows
Problem: Cmdwin test fails on MS-Windows.
Solution: Skip test on MS-Windows.
https://github.com/vim/vim/commit/312af65d1ac763c060cb5adfcf8ae5beeec97f59
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | test/old/testdir/test_cmdwin.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/old/testdir/test_cmdwin.vim b/test/old/testdir/test_cmdwin.vim index e53dd1cb6f..4284f0f58d 100644 --- a/test/old/testdir/test_cmdwin.vim +++ b/test/old/testdir/test_cmdwin.vim @@ -30,6 +30,9 @@ endfunc " This was using a pointer to a freed buffer func Test_cmdwin_freed_buffer_ptr() + " this does not work on MS-Windows because renaming an open file fails + CheckNotMSWindows + au BufEnter * next 0| file edit 0 silent! norm q/ |