changeset 12586:0d29a806e6d1 v8.0.1171

patch 8.0.1171: popup test is still a bit flaky commit https://github.com/vim/vim/commit/712549e04eddd6687c4b7654ec9af6da6c365603 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 1 16:59:18 2017 +0200 patch 8.0.1171: popup test is still a bit flaky Problem: Popup test is still a bit flaky. Solution: Change term_wait() calls. (Ozaki Kiichi)
author Christian Brabandt <cb@256bit.org>
date Sun, 01 Oct 2017 17:00:05 +0200
parents 544029ac39a1
children 133f06bc6ca0
files src/testdir/test_popup.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_popup.vim
+++ b/src/testdir/test_popup.vim
@@ -645,9 +645,8 @@ func Test_popup_and_window_resize()
   endif
   let g:buf = term_start([$VIMPROG, '--clean', '-c', 'set noswapfile'], {'term_rows': h / 3})
   call term_sendkeys(g:buf, (h / 3 - 1)."o\<esc>G")
-  call term_wait(g:buf, 100)
   call term_sendkeys(g:buf, "i\<c-x>")
-  call term_wait(g:buf, 100)
+  call term_wait(g:buf, 200)
   call term_sendkeys(g:buf, "\<c-v>")
   call term_wait(g:buf, 100)
   " popup first entry "!" must be at the top
--- 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 */
 /**/
+    1171,
+/**/
     1170,
 /**/
     1169,