changeset 11955:baa2edd33f5d v8.0.0857

patch 8.0.0857: terminal test fails on MS-Windows commit https://github.com/vim/vim/commit/620d064b0b0bca2268574abdec2d8eac3384cfdf Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 3 21:08:05 2017 +0200 patch 8.0.0857: terminal test fails on MS-Windows Problem: Terminal test fails on MS-Windows. Solution: Sleep a fraction of a second.
author Christian Brabandt <cb@256bit.org>
date Thu, 03 Aug 2017 21:15:04 +0200
parents f88fa730ddb3
children a53a58b5452c
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -152,6 +152,10 @@ func Test_terminal_scrape()
   call term_wait(1234)
 
   call term_wait(buf)
+  if has('win32')
+    " TODO: this should not be needed
+    sleep 100m
+  endif
   call Check_123(buf)
 
   " Must still work after the job ended.
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    857,
+/**/
     856,
 /**/
     855,