Skip to content

Commit

Permalink
patch 8.2.5121: interrupt test sometimes fails
Browse files Browse the repository at this point in the history
Problem:    Interrupt test sometimes fails.
Solution:   Use a different file name.
  • Loading branch information
brammool committed Jun 18, 2022
1 parent 2f074f4 commit 8d64206
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/testdir/test_interrupt.vim
Expand Up @@ -13,17 +13,20 @@ func s:bufwritepost()
endfunction

func Test_interrupt()
new Xfile
new Xinterrupt
let n = 0
try
au BufWritePre Xfile call s:bufwritepre()
au BufWritePost Xfile call s:bufwritepost()
au BufWritePre Xinterrupt call s:bufwritepre()
au BufWritePost Xinterrupt call s:bufwritepost()
w!
catch /^Vim:Interrupt$/
endtry
call assert_equal(1, s:bufwritepre_called)
call assert_equal(0, s:bufwritepost_called)
call assert_equal(0, filereadable('Xfile'))
call assert_equal(0, filereadable('Xinterrupt'))

au! BufWritePre
au! BufWritePost
endfunc

" vim: shiftwidth=2 sts=2 expandtab
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -734,6 +734,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
5121,
/**/
5120,
/**/
Expand Down

0 comments on commit 8d64206

Please sign in to comment.