diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-09 17:05:22 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-14 18:20:29 -0400 |
commit | 4eb89e7f9b54db31d7e1cb9f10c734cb041875df (patch) | |
tree | a2fcba7b8a21db2701c0b04439adb21ba3f83f1e | |
parent | 03619094628bc2529db7c7a990c20088c552b8e0 (diff) | |
download | rneovim-4eb89e7f9b54db31d7e1cb9f10c734cb041875df.tar.gz rneovim-4eb89e7f9b54db31d7e1cb9f10c734cb041875df.tar.bz2 rneovim-4eb89e7f9b54db31d7e1cb9f10c734cb041875df.zip |
vim-patch:8.1.2098: mksession test fails on MS-Windows
Problem: mksession test fails on MS-Windows.
Solution: Skip testing with backslashes on MS-Windows.
https://github.com/vim/vim/commit/37ac4a531ce58daa201e3e045ef553734eaa432a
-rw-r--r-- | src/nvim/testdir/test_mksession.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_mksession.vim b/src/nvim/testdir/test_mksession.vim index 5605c6a1c0..1e22f7e9c9 100644 --- a/src/nvim/testdir/test_mksession.vim +++ b/src/nvim/testdir/test_mksession.vim @@ -336,6 +336,9 @@ endfunc " Test for changing backslash to forward slash in filenames func Test_mksession_slash() + if exists('+shellslash') + throw 'Skipped: cannot use backslash in file name' + endif enew %bwipe! e a\\b\\c |