# HG changeset patch # User Christian Brabandt # Date 1528032605 -7200 # Node ID 7f5ddc6e715b9365cde1c443cca2702ca5b9e55b # Parent 2aeb29b7ca4ec6d49ad498f32821abbc5166e97a patch 8.1.0029: terminal test fails on MS-Windows when "wc" exists commit https://github.com/vim/vim/commit/1580f755c91d12a3e63d60eec8733f8b79debc31 Author: Bram Moolenaar Date: Sun Jun 3 15:26:36 2018 +0200 patch 8.1.0029: terminal test fails on MS-Windows when "wc" exists Problem: Terminal test fails on MS-Windows when "wc" exists. Solution: Skip test with redirection on MS-Windows. 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 @@ -580,6 +580,10 @@ func Test_terminal_write_stdin() if !executable('wc') throw 'skipped: wc command not available' endif + if has('win32') + " TODO: enable once writing to stdin works on MS-Windows + return + endif new call setline(1, ['one', 'two', 'three']) %term wc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 29, +/**/ 28, /**/ 27,