# HG changeset patch # User Bram Moolenaar # Date 1547908208 -3600 # Node ID 0e39325d5ea19da2b24136313c4095a519425c59 # Parent a37d1d562154355c5338d0bf5544caf6ecce4715 patch 8.1.0778: terminal test fails on MS-Windows commit https://github.com/vim/vim/commit/d383c92ec1d14ffd5c3802f0ffd763e91d547fa8 Author: Bram Moolenaar Date: Sat Jan 19 15:27:08 2019 +0100 patch 8.1.0778: terminal test fails on MS-Windows Problem: Terminal test fails on MS-Windows. Solution: Temporarily skip the test on MS-Windows. Do run it both in terminal and GUI on other systems. diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -643,8 +643,8 @@ func Test_terminal_write_stdin() endfunc func Test_terminal_no_cmd() - " Todo: make this work in the GUI - if !has('gui_running') + " Todo: make this work on Win32 again + if has('win32') return endif let buf = term_start('NONE', {}) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 778, +/**/ 777, /**/ 776,