changeset 30178:8ddf91c8faa6 v9.0.0425

patch 9.0.0425: autocmd test is a bit flaky on MS-Windows Commit: https://github.com/vim/vim/commit/ae04a6049b3f0e30a671966ed2dda1979e0b5f20 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 9 15:08:10 2022 +0100 patch 9.0.0425: autocmd test is a bit flaky on MS-Windows Problem: Autocmd test is a bit flaky on MS-Windows. Solution: Add a bit more sleeping. (Ken Takata, closes https://github.com/vim/vim/issues/11095)
author Bram Moolenaar <Bram@vim.org>
date Fri, 09 Sep 2022 16:15:02 +0200
parents adc2b808fb87
children ef53b84f019c
files src/testdir/test_autocmd.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -763,7 +763,7 @@ func Test_autocmd_bufwipe_in_SessLoadPos
 
   call writefile(content, 'Xvimrc', 'D')
   call system(GetVimCommand('Xvimrc') .. ' --not-a-term --noplugins -S Session.vim -c cq')
-  sleep 50m
+  sleep 100m
   let errors = join(readfile('Xerrors'))
   call assert_match('E814:', errors)
 
@@ -787,6 +787,7 @@ func Test_autocmd_blast_badd()
 
   call writefile(content, 'XblastBall', 'D')
   call system(GetVimCommand() .. ' --clean -S XblastBall')
+  sleep 100m
   call assert_match('OK', readfile('Xerrors')->join())
 
   call delete('Xerrors')
@@ -823,6 +824,7 @@ func Test_autocmd_bufwipe_in_SessLoadPos
 
   call writefile(content, 'Xvimrc', 'D')
   call system(GetVimCommand('Xvimrc') .. ' --not-a-term --noplugins -S Session.vim -c cq')
+  sleep 100m
   let errors = join(readfile('Xerrors'))
   " This probably only ever matches on unix.
   call assert_notmatch('Caught deadly signal SEGV', errors)
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    425,
+/**/
     424,
 /**/
     423,