changeset 11201:87ef152072d4 v8.0.0487

patch 8.0.0487: the autocmd test hangs on MS-Windows commit https://github.com/vim/vim/commit/651e4056aceaa580df9e2fff575a6402d5c6f0dc Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 19 Mar 2017 18:45:03 +0100
parents 78c53fe91863
children d451f8432152
files src/testdir/test_autocmd.vim src/version.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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('%')
--- 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,