Skip to content

Commit ea5d6fa

Browse files
committed
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)
1 parent 97bd5e6 commit ea5d6fa

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/testdir/test_terminal.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Tests for the terminal window.
22

3-
if !exists('*term_start')
3+
if !has('terminal')
44
finish
55
endif
66

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
958,
772774
/**/
773775
957,
774776
/**/

0 commit comments

Comments
 (0)