# HG changeset patch # User Christian Brabandt # Date 1489945503 -3600 # Node ID 87ef152072d4e681d7a0c51e27390b02c3e44b8c # Parent 78c53fe9186362dc0a9598e131d7091dc417396f patch 8.0.0487: the autocmd test hangs on MS-Windows commit https://github.com/vim/vim/commit/651e4056aceaa580df9e2fff575a6402d5c6f0dc Author: Bram Moolenaar Date: Sun Mar 19 18:34:46 2017 +0100 patch 8.0.0487: the autocmd test hangs on MS-Windows Problem: The autocmd test hangs on MS-Windows. Solution: Skip the hanging tests for now. diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -349,6 +349,9 @@ endfunc " Closing a window might cause an endless loop " E814 for older Vims function Test_autocmd_bufwipe_in_SessLoadPost() + if has('win32') + throw 'Skipped: test hangs on MS-Windows' + endif tabnew set noswapfile let g:bufnr=bufnr('%') @@ -374,6 +377,9 @@ endfunc " SEGV occurs in older versions. function Test_autocmd_bufwipe_in_SessLoadPost2() + if has('win32') + throw 'Skipped: test hangs on MS-Windows' + endif tabnew set noswapfile let g:bufnr=bufnr('%') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 487, +/**/ 486, /**/ 485,