mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.0.0810: MS-Windows: tests still hang
Problem: MS-Windows: tests still hang. Solution: Only create the XfakeHOME directory if it does not exist yet.
This commit is contained in:
@@ -24,5 +24,7 @@ if 1
|
|||||||
" Make sure $HOME does not get read or written.
|
" Make sure $HOME does not get read or written.
|
||||||
" It must exist, gnome tries to create $HOME/.gnome2
|
" It must exist, gnome tries to create $HOME/.gnome2
|
||||||
let $HOME = getcwd() . '/XfakeHOME'
|
let $HOME = getcwd() . '/XfakeHOME'
|
||||||
call mkdir($HOME)
|
if !isdirectory($HOME)
|
||||||
|
call mkdir($HOME)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
@@ -769,6 +769,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 */
|
||||||
|
/**/
|
||||||
|
810,
|
||||||
/**/
|
/**/
|
||||||
809,
|
809,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user