# HG changeset patch # User Bram Moolenaar # Date 1548365405 -3600 # Node ID c91618229f99ed0c423b00bce1bcc185ca56d2d6 # Parent a58f219678ca00f29e1209c5174cbb9f2ed23ac9 patch 8.1.0816: test for 'runtimepath' in session fails on MS-Windows commit https://github.com/vim/vim/commit/681b6bc86c8f60473854c0141935c07494528884 Author: Bram Moolenaar Date: Thu Jan 24 22:23:58 2019 +0100 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. diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim --- a/src/testdir/test_mksession.vim +++ b/src/testdir/test_mksession.vim @@ -127,6 +127,10 @@ func Test_mksession_large_winheight() endfunc func Test_mksession_rtp() + if has('win32') + " TODO: fix problem with backslashes + return + endif new let _rtp=&rtp " Make a real long (invalid) runtimepath value, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -788,6 +788,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 816, +/**/ 815, /**/ 814,