Skip to content

Commit d0b6c6c

Browse files
committed
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.
1 parent 30fe886 commit d0b6c6c

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/testdir/setup.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ if 1
2424
" Make sure $HOME does not get read or written.
2525
" It must exist, gnome tries to create $HOME/.gnome2
2626
let $HOME = getcwd() . '/XfakeHOME'
27-
call mkdir($HOME)
27+
if !isdirectory($HOME)
28+
call mkdir($HOME)
29+
endif
2830
endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
810,
772774
/**/
773775
809,
774776
/**/

0 commit comments

Comments
 (0)