Skip to content

Commit

Permalink
patch 8.0.1784: gvim test gets stuck in dialog
Browse files Browse the repository at this point in the history
Problem:    Gvim test gets stuck in dialog.
Solution:   Rename the file used.
  • Loading branch information
brammool committed May 1, 2018
1 parent c5cd885 commit bc7845d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/testdir/test_quickfix.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1154,18 +1154,18 @@ func Test_efm2()

" Test for %o
set efm=%f(%o):%l\ %m
cgetexpr ['Xtestfile(Language.PureScript.Types):20 Error']
call writefile(['Line1'], 'Xtestfile')
cgetexpr ['Xotestfile(Language.PureScript.Types):20 Error']
call writefile(['Line1'], 'Xotestfile')
let l = getqflist()
call assert_equal(1, len(l), string(l))
call assert_equal('Language.PureScript.Types', l[0].module)
copen
call assert_equal('Language.PureScript.Types|20| Error', getline(1))
call feedkeys("\<CR>", 'xn')
call assert_equal('Xtestfile', expand('%:t'))
call assert_equal('Xotestfile', expand('%:t'))
cclose
bd
call delete("Xtestfile")
call delete("Xotestfile")

" The following sequence of commands used to crash Vim
set efm=%W%m
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

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

0 comments on commit bc7845d

Please sign in to comment.