# HG changeset patch # User Christian Brabandt # Date 1501414204 -7200 # Node ID 4276e114b34a4c4101305c0f887684ac885122c6 # Parent a5e62f9986a5c3f248c21acb66d356a8db62d2cd patch 8.0.0810: MS-Windows: tests still hang commit https://github.com/vim/vim/commit/d0b6c6c54e0f3c2984e1d9b316a587ef14cfd53a Author: Bram Moolenaar Date: Sun Jul 30 13:28:23 2017 +0200 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. diff --git a/src/testdir/setup.vim b/src/testdir/setup.vim --- a/src/testdir/setup.vim +++ b/src/testdir/setup.vim @@ -24,5 +24,7 @@ if 1 " Make sure $HOME does not get read or written. " It must exist, gnome tries to create $HOME/.gnome2 let $HOME = getcwd() . '/XfakeHOME' - call mkdir($HOME) + if !isdirectory($HOME) + call mkdir($HOME) + endif endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 810, +/**/ 809, /**/ 808,