# HG changeset patch # User Christian Brabandt # Date 1506870005 -7200 # Node ID 0d29a806e6d13bef0e1a1008d480e8bcd1b394e3 # Parent 544029ac39a1632498479086417aabac6877146e patch 8.0.1171: popup test is still a bit flaky commit https://github.com/vim/vim/commit/712549e04eddd6687c4b7654ec9af6da6c365603 Author: Bram Moolenaar 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) diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim --- 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\G") - call term_wait(g:buf, 100) call term_sendkeys(g:buf, "i\") - call term_wait(g:buf, 100) + call term_wait(g:buf, 200) call term_sendkeys(g:buf, "\") call term_wait(g:buf, 100) " popup first entry "!" must be at the top diff --git a/src/version.c b/src/version.c --- 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,