From: Bram Moolenaar Date: Tue, 20 Feb 2018 16:09:16 +0000 (+0100) Subject: patch 8.0.1527: screen dump test fails on MS-Windows X-Git-Tag: v8.0.1527 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cc9f7440d857ff8360c15bb11e4e6229463920e;p=vim patch 8.0.1527: screen dump test fails on MS-Windows Problem: Screen dump test fails on MS-Windows. Solution: Skip dump test on MS-Windows for now. --- diff --git a/src/testdir/test_syntax.vim b/src/testdir/test_syntax.vim index e60bb5287..554ff1620 100644 --- a/src/testdir/test_syntax.vim +++ b/src/testdir/test_syntax.vim @@ -526,7 +526,8 @@ endfunc " Check highlighting for a small piece of C code with a screen dump. func Test_syntax_c() - if !has('terminal') + " Need to be able to run terminal Vim with 256 colors. + if !has('terminal') || has('win32') return endif call writefile([ diff --git a/src/version.c b/src/version.c index 9c869caee..5bd6ead3a 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1527, /**/ 1526, /**/