changeset 20741:fa6f1c97813f v8.2.0923

patch 8.2.0923: cmdline test is slow Commit: https://github.com/vim/vim/commit/c82dd86084581afa5113b0dd9ade7a631b89b4fc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 7 17:30:33 2020 +0200 patch 8.2.0923: cmdline test is slow Problem: Cmdline test is slow. Solution: Use WaitForAssert().
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Jun 2020 17:45:03 +0200
parents 463de04e9d0e
children 8c304b9fcb1a
files src/testdir/test_cmdline.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -3,6 +3,7 @@
 source check.vim
 source screendump.vim
 source view_util.vim
+source shared.vim
 
 func Test_complete_tab()
   call writefile(['testfile'], 'Xtestfile')
@@ -1194,13 +1195,12 @@ func Test_cmdwin_interrupted()
   call writefile(lines, 'XTest_cmdwin')
 
   let buf = RunVimInTerminal('-S XTest_cmdwin', {'rows': 18})
-  call TermWait(buf, 1000)
   " open cmdwin
   call term_sendkeys(buf, "q:")
-  call TermWait(buf, 500)
+  call WaitForAssert({-> assert_match('-- More --', term_getline(buf, 18))})
   " quit more prompt for :smile command
   call term_sendkeys(buf, "q")
-  call TermWait(buf, 500)
+  call WaitForAssert({-> assert_match('^$', term_getline(buf, 18))})
   " execute a simple command
   call term_sendkeys(buf, "aecho 'done'\<CR>")
   call VerifyScreenDump(buf, 'Test_cmdwin_interrupted', {})
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    923,
+/**/
     922,
 /**/
     921,