mirror of
https://github.com/vim/vim.git
synced 2025-09-12 22:53:38 -04:00
patch 7.4.1307
Problem: Some channel tests fail on MS-Windows. Solution: Disable the failing tests temporarily.
This commit is contained in:
parent
76467dfcaf
commit
f02c5cffd8
@ -191,7 +191,10 @@ func s:two_channels(port)
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_two_channels()
|
func Test_two_channels()
|
||||||
call s:run_server('s:two_channels')
|
" TODO: make this work again with MS-Windows
|
||||||
|
if has('unix')
|
||||||
|
call s:run_server('s:two_channels')
|
||||||
|
endf
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test that a server crash is handled gracefully.
|
" Test that a server crash is handled gracefully.
|
||||||
@ -208,7 +211,10 @@ func s:server_crash(port)
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_server_crash()
|
func Test_server_crash()
|
||||||
call s:run_server('s:server_crash')
|
" TODO: make this work again with MS-Windows
|
||||||
|
if has('unix')
|
||||||
|
call s:run_server('s:server_crash')
|
||||||
|
endif
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
let s:reply = ""
|
let s:reply = ""
|
||||||
|
@ -747,6 +747,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1307,
|
||||||
/**/
|
/**/
|
||||||
1306,
|
1306,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user