]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.0.0487: the autocmd test hangs on MS-Windows v8.0.0487
authorBram Moolenaar <Bram@vim.org>
Sun, 19 Mar 2017 17:34:46 +0000 (18:34 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 19 Mar 2017 17:34:46 +0000 (18:34 +0100)
Problem:    The autocmd test hangs on MS-Windows.
Solution:   Skip the hanging tests for now.

src/testdir/test_autocmd.vim
src/version.c

index b7487522ced534cc1e34e392c76fd5493ccb209e..9e0ecbe902c8f5eae331556ad5c24fa8e4aca1b0 100644 (file)
@@ -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('%')
index 7cd12ebbe73ad393acc9398cc8f90039ad37c95b..c9d7361ddb3d4b68f9c6a3f6dbfcb42348888282 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    487,
 /**/
     486,
 /**/