From 4eb89e7f9b54db31d7e1cb9f10c734cb041875df Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 9 Aug 2020 17:05:22 -0400 Subject: 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 --- src/nvim/testdir/test_mksession.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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 -- cgit