diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-30 18:34:35 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-30 20:32:27 +0800 |
commit | 4ca14b310cc385bd7ebb6e478ee5cc249f26556e (patch) | |
tree | 2ae8a4050054080c59fa5df13c85c0f54d584ab3 | |
parent | ac1dd046c01e0685b0f8eeaa36e622b3c2f339ad (diff) | |
download | rneovim-4ca14b310cc385bd7ebb6e478ee5cc249f26556e.tar.gz rneovim-4ca14b310cc385bd7ebb6e478ee5cc249f26556e.tar.bz2 rneovim-4ca14b310cc385bd7ebb6e478ee5cc249f26556e.zip |
vim-patch:8.2.4349: FileChangedShell test fails on MS-Windows
Problem: FileChangedShell test fails on MS-Windows.
Solution: Skip the test on MS-Windows.
https://github.com/vim/vim/commit/c9e3187d053dcef03d11915b06be0c78ab45bc75
-rw-r--r-- | src/nvim/testdir/test_filechanged.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filechanged.vim b/src/nvim/testdir/test_filechanged.vim index 06ccd6e85f..e9ba71c12d 100644 --- a/src/nvim/testdir/test_filechanged.vim +++ b/src/nvim/testdir/test_filechanged.vim @@ -142,6 +142,8 @@ endfunc func Test_FileChangedShell_edit_dialog() throw 'Skipped: requires a UI to be active' CheckNotGui + " FIXME: why does this not work on MS-Windows? + CheckUnix new Xchanged_r call setline(1, 'reload this') |