# HG changeset patch # User Christian Brabandt # Date 1523389506 -7200 # Node ID 2f44d91c2bcc5dfa05a32b6c54a0739b4ea7cdba # Parent 39491c55c91a5fa24568dabc8dd6203460530040 patch 8.0.1694: terminal API test is a bit flaky commit https://github.com/vim/vim/commit/b377457e693210d1b0c0bbac7e04671fc98f038b Author: Bram Moolenaar Date: Tue Apr 10 21:43:26 2018 +0200 patch 8.0.1694: terminal API test is a bit flaky Problem: Terminal API test is a bit flaky. Solution: Wait longer for Vim to stop. diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -70,7 +70,7 @@ endfunc func StopVimInTerminal(buf) call assert_equal("running", term_getstatus(a:buf)) call term_sendkeys(a:buf, "\\:qa!\") - call WaitFor('term_getstatus(' . a:buf . ') == "finished"') + call WaitFor('term_getstatus(' . a:buf . ') == "finished"', 3000) only! endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1694, +/**/ 1693, /**/ 1692,