From: Bram Moolenaar Date: Sun, 1 Oct 2017 14:59:18 +0000 (+0200) Subject: patch 8.0.1171: popup test is still a bit flaky X-Git-Tag: v8.0.1171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=712549e04eddd6687c4b7654ec9af6da6c365603;p=vim 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 index 0dfa956fb..fdd51de51 100644 --- 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 index d809ba978..925a6cd61 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1171, /**/ 1170, /**/