From: Bram Moolenaar Date: Fri, 18 Aug 2017 19:07:11 +0000 (+0200) Subject: patch 8.0.0958: terminal test fails on Windows when winpty dll is missing X-Git-Tag: v8.0.0958 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea5d6fadbbba614e51e819cb537a3d52600bfcc5;p=vim patch 8.0.0958: terminal test fails on Windows when winpty dll is missing Problem: The terminal test fails on MS-Windows when compiled with the terminal feature but the winpty DLL is missing. Solution: Check if the terminal feature works. (Ken Takata) --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index c75d07f2b..64104abeb 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1,6 +1,6 @@ " Tests for the terminal window. -if !exists('*term_start') +if !has('terminal') finish endif diff --git a/src/version.c b/src/version.c index 9d12b1efb..903b13ee5 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 958, /**/ 957, /**/