diff src/testdir/test_autocmd.vim @ 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 e08ead1d269f
children ac36e139510f
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('%')