summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-07 13:32:46 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-07 13:32:46 +0100
commitdd07c02232e91ee963b91a4477179d4b9548b862 (patch)
tree0ce135a9a20c1fd590c5f6699e1c6ce7959a040d
parent983d83ff1cd796ff321074335fa53fbe7ac45a46 (diff)
downloadvim-git-dd07c02232e91ee963b91a4477179d4b9548b862.tar.gz
patch 8.2.2477: autocommand tests hang on MS-Windowsv8.2.2477
Problem: Autocommand tests hang on MS-Windows. Solution: Skip a couple of tests. Fix file name.
-rw-r--r--src/testdir/test_autocmd.vim8
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index 3109f88bb..e4f67f4fc 100644
--- a/src/testdir/test_autocmd.vim
+++ b/src/testdir/test_autocmd.vim
@@ -2761,6 +2761,9 @@ endfunc
" Fuzzer found some strange combination that caused a crash.
func Test_autocmd_normal_mess()
+ " For unknown reason this hangs on MS-Windows
+ CheckNotMSWindows
+
augroup aucmd_normal_test
au BufLeave,BufWinLeave,BufHidden,BufUnload,BufDelete,BufWipeout * norm 7q/qc
augroup END
@@ -2775,6 +2778,9 @@ func Test_autocmd_normal_mess()
endfunc
func Test_autocmd_closing_cmdwin()
+ " For unknown reason this hangs on MS-Windows
+ CheckNotMSWindows
+
au BufWinLeave * nested q
call assert_fails("norm 7q?\n", 'E855:')
@@ -2789,7 +2795,7 @@ func Test_autocmd_vimgrep()
au QuickfixCmdPre,BufNew,BufDelete,BufReadCmd * q9
augroup END
%bwipe!
- call assert_fails('lv?a?', 'E926:')
+ call assert_fails('lv ?a? foo', 'E926:')
augroup aucmd_vimgrep
au!
diff --git a/src/version.c b/src/version.c
index c21856080..7a91c9bae 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2477,
+/**/
2476,
/**/
2475,