summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-06 19:28:48 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-06 19:28:48 +0100
commitdfc3db76b9de217542cc9258301c1b4818a51cd0 (patch)
tree4ba1c9737fedcc440658be2e4ba2fa3cc6ab2667
parent2c7080bf1ceef4a7779644fd428b2386a0676794 (diff)
downloadvim-git-8.2.2475.tar.gz
patch 8.2.2475: autocommand tests hangs on MS-Windowsv8.2.2475
Problem: Autocommand tests hangs on MS-Windows. Solution: Skip one test.
-rw-r--r--src/testdir/test_autocmd.vim3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim
index e07731d6e..c1d363953 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()
+ " TODO: why does this hang on Windows?
+ CheckNotMSWindows
+
augroup aucmd_normal_test
au BufLeave,BufWinLeave,BufHidden,BufUnload,BufDelete,BufWipeout * norm 7q/qc
augroup END
diff --git a/src/version.c b/src/version.c
index 12a5de856..01c9efb0a 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 */
/**/
+ 2475,
+/**/
2474,
/**/
2473,