Skip to content

Commit 651e405

Browse files
committed
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.
1 parent 8c752bd commit 651e405

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/testdir/test_autocmd.vim

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,9 @@ endfunc
349349
" Closing a window might cause an endless loop
350350
" E814 for older Vims
351351
function Test_autocmd_bufwipe_in_SessLoadPost()
352+
if has('win32')
353+
throw 'Skipped: test hangs on MS-Windows'
354+
endif
352355
tabnew
353356
set noswapfile
354357
let g:bufnr=bufnr('%')
@@ -374,6 +377,9 @@ endfunc
374377

375378
" SEGV occurs in older versions.
376379
function Test_autocmd_bufwipe_in_SessLoadPost2()
380+
if has('win32')
381+
throw 'Skipped: test hangs on MS-Windows'
382+
endif
377383
tabnew
378384
set noswapfile
379385
let g:bufnr=bufnr('%')

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
487,
767769
/**/
768770
486,
769771
/**/

0 commit comments

Comments
 (0)