From 1580f755c91d12a3e63d60eec8733f8b79debc31 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 3 Jun 2018 15:26:36 +0200 Subject: 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. --- src/testdir/test_terminal.vim | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 4cd77572eb..41a0a45003 100644 --- 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 index 4d9696bc58..70fd603354 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 29, /**/ 28, /**/ -- cgit v1.2.3