changeset 26564:7f90bde42bcc v8.2.3811

patch 8.2.3811: the opfunc error test fails on a slow machine Commit: https://github.com/vim/vim/commit/7c0fb800302c3bdd2dfa5ba10d0caa806e9500f6 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 14 20:26:53 2021 +0000 patch 8.2.3811: the opfunc error test fails on a slow machine Problem: The opfunc error test fails on a slow machine. Solution: Use WaitForAssert().
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Dec 2021 21:30:05 +0100
parents b12f084bff49
children 7e742336d4bd
files src/testdir/test_vim9_func.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -3231,6 +3231,7 @@ def Run_Test_opfunc_error()
   call writefile(lines, 'XTest_opfunc_error')
 
   var buf = RunVimInTerminal('-S XTest_opfunc_error', {rows: 6, wait_for_ruler: 0})
+  WaitForAssert(() => assert_match('Press ENTER', term_getline(buf, 6)))
   VerifyScreenDump(buf, 'Test_opfunc_error', {})
 
   # clean up
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3811,
+/**/
     3810,
 /**/
     3809,