diff options
author | Billy Su <g4691821@gmail.com> | 2020-05-02 17:40:53 +0800 |
---|---|---|
committer | Billy Su <g4691821@gmail.com> | 2020-05-02 17:43:25 +0800 |
commit | a0a433dffc70f1ae6c9196dc4b1b504ed171a498 (patch) | |
tree | 201b2b2620fe1f7f79629727fa4981e0af9c2ab2 | |
parent | 2f27d37517ecb2c81b2c6376f12ad73dcffcb41f (diff) | |
download | rneovim-a0a433dffc70f1ae6c9196dc4b1b504ed171a498.tar.gz rneovim-a0a433dffc70f1ae6c9196dc4b1b504ed171a498.tar.bz2 rneovim-a0a433dffc70f1ae6c9196dc4b1b504ed171a498.zip |
vim-patch:8.1.0816: test for 'runtimepath' in session fails on MS-Windows
Problem: Test for 'runtimepath' in session fails on MS-Windows.
Solution: Skip the test for now.
https://github.com/vim/vim/commit/681b6bc86c8f60473854c0141935c07494528884
-rw-r--r-- | src/nvim/testdir/test_mksession.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_mksession.vim b/src/nvim/testdir/test_mksession.vim index 8b20ad0c62..0a8d52242a 100644 --- a/src/nvim/testdir/test_mksession.vim +++ b/src/nvim/testdir/test_mksession.vim @@ -123,6 +123,10 @@ func Test_mksession_large_winheight() endfunc func Test_mksession_rtp() + if has('win32') + " TODO: fix problem with backslashes + return + endif new set sessionoptions+=options let _rtp=&rtp |