From 40dee0c82ec650c4693023ecd1495b0bd70f684d Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 8 Jun 2019 13:54:44 +0200 Subject: vim-patch:8.1.0807: session test fails on MS-Windows Problem: Session test fails on MS-Windows. Solution: Don't try creating file with illegal name. https://github.com/vim/vim/commit/9e79ccbe9ce6fce18939c7ac2e5ad059a3bd1951 --- src/nvim/testdir/test_mksession.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/nvim/testdir/test_mksession.vim b/src/nvim/testdir/test_mksession.vim index c790bd32e3..7c5b95ae96 100644 --- a/src/nvim/testdir/test_mksession.vim +++ b/src/nvim/testdir/test_mksession.vim @@ -239,6 +239,10 @@ func Test_mkview_no_file_name() endfunc func Test_mksession_quote_in_filename() + if !has('unix') + " only Unix can handle this weird filename + return + endif let v:errmsg = '' let filename = has('win32') ? 'x''y' : 'x''y"z' %bwipe! -- cgit