Skip to content

Commit 620d064

Browse files
committed
patch 8.0.0857: terminal test fails on MS-Windows
Problem: Terminal test fails on MS-Windows. Solution: Sleep a fraction of a second.
1 parent 102dc7f commit 620d064

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/testdir/test_terminal.vim

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ func Test_terminal_scrape()
152152
call term_wait(1234)
153153

154154
call term_wait(buf)
155+
if has('win32')
156+
" TODO: this should not be needed
157+
sleep 100m
158+
endif
155159
call Check_123(buf)
156160

157161
" Must still work after the job ended.

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
857,
772774
/**/
773775
856,
774776
/**/

0 commit comments

Comments
 (0)