From 620d064b0b0bca2268574abdec2d8eac3384cfdf Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Aug 2017 21:08:05 +0200 Subject: [PATCH] patch 8.0.0857: terminal test fails on MS-Windows Problem: Terminal test fails on MS-Windows. Solution: Sleep a fraction of a second. --- 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 987b1ee13..3f5e268b5 100644 --- 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. diff --git a/src/version.c b/src/version.c index b8d020327..1c01f4f04 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 857, /**/ 856, /**/ -- 2.50.1