Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.0.1631: testing with Vim running in terminal is a bit flaky
Problem:    Testing with Vim running in terminal is a bit flaky.
Solution:   Delete any .swp file so that later tests don't fail.
  • Loading branch information
brammool committed Mar 23, 2018
1 parent 295ac5a commit 948a796
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/testdir/screendump.vim
Expand Up @@ -26,6 +26,10 @@ source shared.vim
"
" Options is a dictionary (not used yet).
func RunVimInTerminal(arguments, options)
" If Vim doesn't exit a swap file remains, causing other tests to fail.
" Remove it here.
call delete(".swp")

" Make a horizontal and vertical split, so that we can get exactly the right
" size terminal window. Works only when we currently have one window.
call assert_equal(1, winnr('$'))
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -766,6 +766,8 @@ static char *(features[]) =

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

0 comments on commit 948a796

Please sign in to comment.